调用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 #退出
以上是内存溢出为你收集整理的Python在Linux下调试运行全部内容,希望文章能够帮你解决Python在Linux下调试运行所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)