python 命令行断点调试pdb的应用
2020-10-15 python 1438
1.python -m pdb xxxx.py
其中 -m 参数 == module-name
Searches sys.path for the named module and runs the corresponding .py file as a script.
以pdb 就模块 运行test_duandian.py
2. 交互调试 pdb.run("func()")
测试test函数 既
pdb.run("test(100,100)");
其中需要函数调用字符串,而不添加双引号则为直接调用函数,
调用run函数后,进入pdb模式 继而s 进入函数内部进行调试
3.埋点调试
import pdb
在需要添加断点的地方添加 pdb.set_trace()
很赞哦! (21)
相关文章
文章评论
-
-
-
0条评论