gak / pycallgraph

pycallgraph is a Python module that creates call graphs for Python programs.
GNU General Public License v2.0
1.83k stars 335 forks source link

feature request: also track indirect calls #175

Open dz0 opened 7 years ago

dz0 commented 7 years ago

Hi,

is it possible, to show calls, which hide some intermediate functions?

Example:

def A(): B()
def B(): C()
def C(): print("hi")

A()

I'd like to hide B, but still show connection from A to C...

pycallgraph  -e "B" graphviz  -- test_pcg.py

but this shows A and C separately...