Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例子:
def a(): pass def b(): pass def c(): a() b()
该工具将显示某种图形,例如:
c -> a() -> b()
您要查找的图称为调用图。有一个 python 模块来构建它们:
http://pycallgraph.slowchop.com/