-
-
Notifications
You must be signed in to change notification settings - Fork 72
Open
Labels
Description
If I use objgraph in an IPython session things work as expected:
In [1]: import objgraph
In [2]: a = 1
In [3]: objgraph.show_backrefs(objgraph.by_type('int'))
Graph written to /var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/objgraph-5iuhcjwd.dot (0 nodes)
Graph viewer (xdot) not found, generating a png instead
Image generated as /var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/objgraph-5iuhcjwd.pngHowever if I use jupyter qtconsole there is no output from show_backrefs, and if I try and specify an output filename, nothing happens:
In [1]: import objgraph
In [2]: a = 1
In [3]: objgraph.show_backrefs(objgraph.by_type('int'))
what could be going on?