调用pdb模块,可以在Linux下单行调试
例如:调试 test.py
python -m pdb test.py 开启调试
(Pdb) 会自动停在第一行,等待调试,
输入 n 回车,开始单步调试
>>> import pdb
>>> python -m pdb test.py
> /home/staragent/plugins/test.py(1)<module>()
-> import time
(Pdb) n
> /home/staragent/plugins/test.py(2)<module>()
-> import datetime
(Pdb)
> /home/staragent/plugins/test.py(3)<module>()
-> import sys
(Pdb)
常用命令说明:
l #查看运行到哪行代码
n #单步运行,跳过函数
s #单步运行,可进入函数
p 变量 #查看变量值
b 行号 #断点设置到第几行
b #显示所有断点列表
cl 断点号 #删除某个断点
cl #删除所有断点
c #跳到下一个断点
r #return当前函数
exit #退出