#详细追踪
python -m trace --trace script.py
#显示调用了哪些函数
python -m trace --trackcalls script.py
Python代码追踪(类似于bash -x的效果)
最新推荐文章于 2025-02-24 21:13:06 发布
#详细追踪
python -m trace --trace script.py
#显示调用了哪些函数
python -m trace --trackcalls script.py