我有一个很大的python脚本,包含多个文件,我需要知道在哪里调用了一个方法。 python中是否有回溯功能,例如php中的debug_backtrace?
最佳答案
请参阅traceback模块。
import traceback
def foo():
bar()
def bar():
baz()
def baz():
traceback.print_stack()
# or trace = traceback.extract_stack()
foo()