首页 > 编程 > Python > 正文

python pdb调试方法分享

2020-02-23 05:06:34
字体:
来源:转载
供稿:网友

代码如下:
import pdb

def pdb_test(arg):
    for i in range(arg):
        print(i)
    return arg

pdb.run("pdb_test(3)")
 

 b 函数名、行号:

打断点,b可以查询所有的断点。
代码如下:
(Pdb) b pdb_test
Breakpoint 1 at c:/users/plpcc/desktop/pdbtest.py:3
(Pdb) b
Num Type         Disp Enb   Where
   breakpoint   keep yes   at c:/users/plpcc/desktop/pdbtest.py:3
 

  c:

运行程序,直到遇到断点。
代码如下:
(Pdb) c
> c:/users/plpcc/desktop/pdbtest.py(4)pdb_test()
-> for i in range(arg):

   l:

     查看断点周围的代码
代码如下:
(Pdb) l
    import pdb

B   def pdb_test(arg):
  ->      for i in range(arg):
             print(i)
       return arg

     pdb.run("pdb_test(3)")

 a:

    查看参数
代码如下:
(Pdb) a
arg = 3

 s, n:

    单步运行,区别s会进入路径中的函数,n不会进入

 p:

    查看表达式的值
代码如下:
(Pdb) p i

 condition:
 

条件断点,只有条件为true断点才命中
代码如下:
> c:/users/plpcc/desktop/pdbtest.py(5)pdb_test()
-> print(i)
(Pdb) l
    import pdb

    def pdb_test(arg):
        for i in range(arg):
B->          print(i)
        return arg

    pdb.run("pdb_test(3)")
[EOF]
(Pdb) b
Num Type         Disp Enb   Where
breakpoint   keep yes   at c:/users/plpcc/desktop/pdbtest.py:5
(Pdb) condition 2 i==1   //i==1时才触发断点2
New condition set for breakpoint 2.
(Pdb) b
Num Type         Disp Enb   Where
breakpoint   keep yes   at c:/users/plpcc/desktop/pdbtest.py:5
 stop only if i==1
(Pdb) c
                    //i==0直接打印未断住
> c:/users/plpcc/desktop/pdbtest.py(5)pdb_test()
-> print(i)             //触发断点,i==1
(Pdb) p i

bt:

查看调用堆栈
代码如下:
(Pdb) bt
c:/python33/lib/bdb.py(405)run()
-> exec(cmd, globals, locals)
<string>(1)<module>()

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表