pycallgraph
pycallgraph copied to clipboard
pycallgraph is a Python module that creates call graphs for Python programs.
``` $ pycallgraph graphviz -o test.svg --output-format=svg -- ./test.py $ file test.svg test.svg: PNG image data, 220 x 444, 8-bit/color RGB, non-interlaced ``` The file generated should have been an...
`Config.init_libpath` only looks at `sysconfig.get_python_lib()` (usually `/usr/lib/`), and doesnt include `sysconfig.get_python_lib(plat_specific=True)` , which is usually `/usr/lib64`. The later is where `re.match` will come from for most distro users. Both directories...
When generating output for my profiled code I get the following error: ``` libpath/shortest.c:324: triangulation failed libpath/shortest.c:192: source point not in any triangle Error: in routesplines, Pshortestpath failed Segmentation fault...

Importing anything that hasn't been imported before (ie: not in `sys.modules`, eg: the `html` module*) seem to add a whole lot of nodes. I had to manually whitelist names for...
I have repeatedly tried PyCallGraphException with different results. I have gotten it to work with max_depth=4, but not max_depth=5. I do not appear to have a file named "tmpxw3sbjz1" (or...
Dears, I would like to know if using pycallgraph I can show the chronology of the call graph. I'm thinking that at current time there is no special ordering about...
I can not using pycallgraph for tensorflow program.
There is no argument in the documentation that allows you to specify a different command other than `python` to run the code, so this will always run Python 2.7 instead...
pycallgraph has been a useful resource for performance testing my projects, but the PyPi release is far behind. I forked pycallgraph, merged the `develop` branch, and released `pycallgraph2` on PyPi...