pycallgraph2 icon indicating copy to clipboard operation
pycallgraph2 copied to clipboard

pycallgraph2 is a maintained fork of pycallgraph, a Python module that creates call graphs for Python programs.

Results 23 pycallgraph2 issues
Sort by recently updated
recently updated
newest added

I observed that pycallgraph2 includes itself in the resulting call graph: https://stackoverflow.com/questions/74102511/why-does-pycallgraph2-describe-itself-while-profiling-hello-world A comment on the SO post shows this behavior can be silenced. Should this silencing be set as...

At least two files in the wheel ([pycallgraph2-1.1.3-py2.py3-none-any.whl from PyPI](https://pypi.org/project/pycallgraph2/#files)) are different from those in the tar archive: pycallgraph2/tracer.py pycallgraph2/output/ubigraph.py in the wheel, the imports for Python 2 and Python...

### Explanation: - Standard library calls were not being filtered previously (with appropriate setting set), at least not from inside a virtualenv--but I don't think at all. This corrects that....

Switch to sys.setprofile which should help limit the number of times the tracer is invoked. Make the stdlib detection more robust, which should help prevent the tracer for inadvertently filtering...

This fork seems to not be maintained anymore. Active maintained fork seems to be currently: https://github.com/e-alizadeh/pycallgraph (called CallGraph4Py)

Tried out the tool, with little success. Here's a log in case it might be helpful. ``` E:\code\emsdk\emscripten\master>pip install pycallgraph2 Collecting pycallgraph2 Downloading https://files.pythonhosted.org/packages/d5/7d/636c4f8359f82c5b7dc022e59f67b1f3aa7a1875fa5e9ac00e5119daf4bd/pycallgraph2-1.1.3-py2.py3-none-any.whl Installing collected packages: pycallgraph2 Successfully installed...

Hi. This is related to issue #12, but not quite the same. I would like, for the purposes of publication, to have a vector output instead of a hardcoded PNG...

$ make tests py.test \ --pep8 \ --ignore=pycallgraph2/memory_profiler.py \ test pycallgraph2 examples Traceback (most recent call last): File "/home/travis/virtualenv/python2.7.16/bin/py.test", line 10, in sys.exit(main()) File "/home/travis/virtualenv/python2.7.16/lib/python2.7/site-packages/_pytest/config/__init__.py", line 61, in main config...

after pip install calling `pycallgraph graphviz -- ./crypto.py` 'pycallgraph' is not recognized as an internal or external command,

I wrapped `with PyCallGraph(output=GraphvizOutput()) ` around the `run_main()` call of tensorboard package but the generated pycallgraph only shows the internal python interpreter calls like this: ![pycallgraph](https://user-images.githubusercontent.com/27887321/93991522-b446a980-fd8c-11ea-977e-1a83ec4c5de1.png) all tough `run_main()` tensorboard.main...