我在函数中添加了一个 assert(0) 以了解对该函数的函数调用顺序。
前任:
def my_func():
...lines of code...
assert(0)
...more lines of code...
日志仅显示以下内容:
Traceback (most recent call last):
File "/var/www/folder/file.py", line 273, in my_func
assert(0)
AssertionError
我想查看完整的调用跟踪 - 示例:first_func -> second_func -> my_func
我尝试了回溯库,但它向我显示了相同的堆栈跟踪。请让我知道我在这里缺少什么。