您的当前位置:首页python pdb模块

python pdb模块

2023-11-11 来源:六九美食网

翻译不是一一对应

Debug功能对于developer是非常重要的,python提供了相应的模块pdb让你可以在用文本编辑器写脚本的情况下进行debug. pdb是python debugger的简称。

常用的一些命令如下:

 

命令用途
break 或 b设置断点
continue 或 c继续执行程序
list 或 l查看当前行的代码段
step 或 s进入函数
return 或 r执行代码直到从当前函数返回
exit 或 q中止并退出
next 或 n执行下一行
pp打印变量的值
help帮助

开始介绍如何使用pdb。

使用的测试代码1: epdb1.py

import pdba = "aaa"pdb.set_trace()b = "bbb"c = "ccc"final = a + b + cprint final关于set_trace()pdb.set_trace()¶

Enter the debugger at the calling stack frame. This is useful to hard-code abreakpoint at a given point in a program, even if the code is not otherwisebeing debugged (e.g. when an assertion fails).

1 开始调试:

[root@rcc-pok-idg-2255 ~]#  python epdb1.py> /root/epdb1.py(4)?()-> b = "bbb"(Pdb) n> /root/epdb1.py(5)?()-> c = "ccc"(Pdb)> /root/epdb1.py(6)?()-> final = a + b + c(Pdb) list  1     import pdb  2     a = "aaa"  3     pdb.set_trace()  4     b = "bbb"  5     c = "ccc"  6  -> final = a + b + c  7     print final[EOF](Pdb)[EOF](Pdb) n> /root/epdb1.py(7)?()-> print final(Pdb)

  1. 使用n+enter表示执行当前的statement,在第一次按下了n+enter之后可以直接按enter表示重复执行上一条debug命令。

If you press ENTER without entering anything, pdb will re-execute the last command that you gave it.

  1. quit或者q可以退出当前的debug,但是quit会以一种非常粗鲁的方式退出程序,直接crash

[root@rcc-pok-idg-2255 ~]#  python epdb1.py> /root/epdb1.py(4)?()-> b = "bbb"(Pdb) n> /root/epdb1.py(5)?()-> c = "ccc"(Pdb) qTraceback (most recent call last):  File "epdb1.py", line 5, in ?    c = "ccc"  File "epdb1.py", line 5, in ?    c = "ccc"  File "/usr/lib64/python2.4/bdb.py", line 48, in trace_dispatch    return self.dispatch_line(frame)  File "/usr/lib64/python2.4/bdb.py", line 67, in dispatch_line    if self.quitting: raise BdbQuitbdb.BdbQuit

  • 在使用过程中打印变量的值,可以直接使用p加上变量名,但是需要注意的是打印仅仅在当前的statement已经被执行了之后才能看到具体的值,否则会报 NameError: <exceptions.NameError 。> 错误。
  • [root@rcc-pok-idg-2255 ~]#  python epdb1.py> /root/epdb1.py(4)?()-> b = "bbb"(Pdb) n> /root/epdb1.py(5)?()-> c = "ccc"(Pdb) p b‘bbb‘(Pdb)‘bbb‘(Pdb) n> /root/epdb1.py(6)?()-> final = a + b + c(Pdb) p c‘ccc‘(Pdb) p final*** NameError: <exceptions.NameError instance at 0x1551b710>(Pdb) n> /root/epdb1.py(7)?()-> print final(Pdb) p final‘aaabbbccc‘(Pdb)使用c可以停止当前的debug使得程序继续执行。如果在下面的程序中继续有set_statement()的申明,则又会重新进入到debug的状态。[root@rcc-pok-idg-2255 ~]#  python epdb1.py> /root/epdb1.py(4)?()-> b = "bbb"(Pdb) n> /root/epdb1.py(5)?()-> c = "ccc"(Pdb) caaabbbccc可以在代码print final之前再加上set_trace()验证。

  • 如果代码过程,在debug的时候不一定能记住当前的代码快,则可以通过使用list或者l命令在显示。list会用箭头->指向当前debug的语句
  • [root@rcc-pok-idg-2255 ~]#  python epdb1.py> /root/epdb1.py(4)?()-> b = "bbb"(Pdb) list  1     import pdb  2     a = "aaa"  3     pdb.set_trace()  4  -> b = "bbb"  5     c = "ccc"  6     final = a + b + c  7     pdb.set_trace()  8     print final[EOF](Pdb) c> /root/epdb1.py(8)?()-> print final(Pdb) list  3     pdb.set_trace()  4     b = "bbb"  5     c = "ccc"  6     final = a + b + c  7     pdb.set_trace()  8  -> print final[EOF](Pdb)

    对于使用函数的情况下进行debug:

     epdb2.py --import pdbdef combine(s1,s2): # define subroutine combine, which... s3 = s1 + s2 + s1 # sandwiches s2 between copies of s1, ... s3 = ‘"‘ + s3 +‘"‘ # encloses it in double quotes,... return s3 # and returns it.a = "aaa"pdb.set_trace()b = "bbb"c = "ccc"final = combine(a,b)print final

    如果直接使用n进行debug则到final=combine这句的时候会将其当做普通的赋值语句处理,进入到print final。如果想要对函数进行debug如何处理?可以直接使用s进入函数块。

    [root@rcc-pok-idg-2255 ~]# python epdb2.py> /root/epdb2.py(10)?()-> b = "bbb"(Pdb) n> /root/epdb2.py(11)?()-> c = "ccc"(Pdb) n> /root/epdb2.py(12)?()-> final = combine(a,b)(Pdb) s--Call--> /root/epdb2.py(3)combine()-> def combine(s1,s2):      # define subroutine combine, which...(Pdb) n> /root/epdb2.py(4)combine()-> s3 = s1 + s2 + s1    # sandwiches s2 between copies of s1, ...(Pdb) list  1     import pdb  2  3     def combine(s1,s2):      # define subroutine combine, which...  4  ->     s3 = s1 + s2 + s1    # sandwiches s2 between copies of s1, ...  5         s3 = ‘"‘ + s3 +‘"‘   # encloses it in double quotes,...  6         return s3            # and returns it.  7  8     a = "aaa"  9     pdb.set_trace() 10     b = "bbb" 11     c = "ccc"(Pdb) n> /root/epdb2.py(5)combine()-> s3 = ‘"‘ + s3 +‘"‘   # encloses it in double quotes,...(Pdb) n> /root/epdb2.py(6)combine()-> return s3            # and returns it.(Pdb) n--Return--> /root/epdb2.py(6)combine()->‘"aaabbbaaa"‘-> return s3            # and returns it.(Pdb) n> /root/epdb2.py(13)?()-> print final(Pdb)如果不想在函数里单步调试可以在断点出直接按r退出到调用的地方。

    在调试的时候动态改变值 。注意下面有个错误,原因是b已经被赋值了,如果想重新改变b的赋值,则应该使用!b

    [root@rcc-pok-idg-2255 ~]# python epdb2.py> /root/epdb2.py(10)?()-> b = "bbb"(Pdb) var = "1234"(Pdb) b = "avfe"*** The specified object ‘= "avfe"‘ is not a functionor was not found along sys.path.(Pdb) !b="afdfd"(Pdb)再贴一篇好文章:http://onlamp.com/pub/a/python/2005/09/01/debugger.html?page=1

    Debugger Module Contents

    The pdb module contains the debugger. pdb containsone class,Pdb, which inherits from bdb.Bdb. Thedebugger documentation mentions six functions, which create an interactivedebugging session:

    pdb.run(statement[, globals[, locals]])pdb.runeval(expression[, globals[, locals]])pdb.runcall(function[, argument, ...])pdb.set_trace()pdb.post_mortem(traceback)pdb.pm()

    All six functions provide a slightly different mechanism for dropping a userinto the debugger.

    pdb.run(statement[, globals[, locals]])

    pdb.run() executes the string statement under thedebugger‘s control. Global and local dictionaries are optional parameters:

    #!/usr/bin/env pythonimport pdbdef test_debugger(some_int): print "start some_int>>", some_int return_int = 10 / some_int print "end some_int>>", some_int return return_intif __name__ == "__main__": pdb.run("test_debugger(0)")
    pdb.runeval(expression[,globals[, locals]])

    pdb.runeval() is identical to pdb.run(), exceptthat pdb.runeval() returns the value of the evaluated stringexpression:

    #!/usr/bin/env pythonimport pdbdef test_debugger(some_int): print "start some_int>>", some_int return_int = 10 / some_int print "end some_int>>", some_int return return_intif __name__ == "__main__": pdb.runeval("test_debugger(0)")
    pdb.runcall(function[,argument, ...])

    pdb.runcall() calls the specified function andpasses any specified arguments to it:

    #!/usr/bin/env pythonimport pdbdef test_debugger(some_int): print "start some_int>>", some_int return_int = 10 / some_int print "end some_int>>", some_int return return_intif __name__ == "__main__": pdb.runcall(test_debugger, 0)
    pdb.set_trace()

    pdb.set_trace() drops the code into the debugger when executionhits it:

    #!/usr/bin/env pythonimport pdbdef test_debugger(some_int): pdb.set_trace() print "start some_int>>", some_int return_int = 10 / some_int print "end some_int>>", some_int return return_intif __name__ == "__main__": test_debugger(0)
    pdb.post_mortem(traceback)

    pdb.post_mortem() performs postmortem debugging of thespecified traceback:

    #!/usr/bin/env pythonimport pdbdef test_debugger(some_int): print "start some_int>>", some_int return_int = 10 / some_int print "end some_int>>", some_int return return_intif __name__ == "__main__": try: test_debugger(0) except: import sys tb = sys.exc_info()[2] pdb.post_mortem(tb)
    pdb.pm()

    pdb.pm() performs postmortem debugging of the tracebackcontained in sys.last_traceback:

    #!/usr/bin/env pythonimport pdbimport sysdef test_debugger(some_int): print "start some_int>>", some_int return_int = 10 / some_int print "end some_int>>", some_int return return_intdef do_debugger(type, value, tb): pdb.pm()if __name__ == "__main__": sys.excepthook = do_debugger test_debugger(0)

    python pdb模块

    标签:man   express   call()   target   ace   ppi   post   lib   step   

    小编还为您整理了以下内容,可能对您也有帮助:

    怎么用python的pdb模块进行调试?

    工具/材料

    电脑,python环境

    首先打开电脑后,打开终端,我这里以调试debug.py文件做说明,简单介绍python的pdb调试。为了演示,先用cat命令查看一下debug.py的内容。

    我这里用的python3的环境,在终端里输入如图显示python3 -m pdb debug.py命令。就是就是用python的pdb模块调试debug.py文件代码。

    进入调试后,在终端里输入小写字母l,就是英文单词list的缩写,意思就是列出代码内容。如果显示。

    在终端里输入小写字母n,就是英文单词next的缩写,意思就是执行下一行代码。

    在终端里输入小写字母p x,p就是英文单词print的缩写,意思就是打印变量x的值。

    在终端里输入小写字母s,s就是英文单词s的缩写,进入函数内部调试。

    在终端里输入小写字母a,a就是英文单词arguments(参数)的缩写,会打印显示函数所有变量的值。

    在终端里输入小写字母c,就是英文单词continue的缩写,意思就是继续执行代码一直结束,然后重新进入调试。

    在终端里输入小写字母b和阿拉伯数字6,b就是英文单词break的缩写,意思就是在第6行代码打个断点。

    在终端里输入小写字母q,q就是英文单词quit的缩写,意思就是退出调试。

    怎么用python的pdb模块进行调试?

    工具/材料

    电脑,python环境

    首先打开电脑后,打开终端,我这里以调试debug.py文件做说明,简单介绍python的pdb调试。为了演示,先用cat命令查看一下debug.py的内容。

    我这里用的python3的环境,在终端里输入如图显示python3 -m pdb debug.py命令。就是就是用python的pdb模块调试debug.py文件代码。

    进入调试后,在终端里输入小写字母l,就是英文单词list的缩写,意思就是列出代码内容。如果显示。

    在终端里输入小写字母n,就是英文单词next的缩写,意思就是执行下一行代码。

    在终端里输入小写字母p x,p就是英文单词print的缩写,意思就是打印变量x的值。

    在终端里输入小写字母s,s就是英文单词s的缩写,进入函数内部调试。

    在终端里输入小写字母a,a就是英文单词arguments(参数)的缩写,会打印显示函数所有变量的值。

    在终端里输入小写字母c,就是英文单词continue的缩写,意思就是继续执行代码一直结束,然后重新进入调试。

    在终端里输入小写字母b和阿拉伯数字6,b就是英文单词break的缩写,意思就是在第6行代码打个断点。

    在终端里输入小写字母q,q就是英文单词quit的缩写,意思就是退出调试。

    使用pdb模块对python程序进行调试主要有哪几种方法

    本文讨论在没有方便的IDE工具可用的情况下,使用pdb调试python程序 源码例子 例如,有模拟税收计算的程序: #!/usr/bin/python def debug_demo(val): if val

    使用pdb模块对python程序进行调试主要有哪几种方法

    本文讨论在没有方便的IDE工具可用的情况下,使用pdb调试python程序 源码例子 例如,有模拟税收计算的程序: #!/usr/bin/python def debug_demo(val): if val

    如何用pdb进行python调试

    Python自带的pdb库,发现用pdb来调试程序还是很方便的,当然了,什么远程调试,多线程之类,pdb是搞不定的。

    用pdb调试有多种方式可选:

    1. 命令行启动目标程序,加上-m参数,这样调用myscript.py的话断点就是程序的执行第一行之前

    python -m pdb myscript.py

    2. 在Python交互环境中启用调试

    >>> import pdb

    >>> import mymole

    >>> pdb.run(‘mymole.test()’)

    3. 比较常用的,就是在程序中间插入一段程序,相对于在一般IDE里面打上断点然后启动debug,不过这种方式是hardcode的

    if __name__ == "__main__":

    a = 1

    import pdb

    pdb.set_trace()

    b = 2

    c = a + b

    print (c)

    然后正常运行脚本,到了pdb.set_trace()那就会定下来,就可以看到调试的提示符(Pdb)了

    常用的调试命令

    h(elp),会打印当前版本Pdb可用的命令,如果要查询某个命令,可以输入 h [command],例如:“h l” — 查看list命令

    l(ist),可以列出当前将要运行的代码块

    (Pdb) l

    497 pdb.set_trace()

    498 base_data = {}

    499 new_data = {}

    500 try:

    501 execfile(base_file_name,{},base_data)

    502 -> execfile(new_file_name,{},new_data)

    503 except:

    504 logger.writeLog(“error! load result log error!”)

    505 print “load cmp logs error!”

    506 raise Exception, “load cmp logs error!”

    507

    b(reak), 设置断点,例如 “b 77″,就是在当前脚本的77行打上断点,还能输入函数名作为参数,断点就打到具体的函数入口,如果只敲b,会显示现有的全部断点

    (Pdb) b 504

    Breakpoint 4 at /home/jchen/regression/regressionLogCMP.py:504

    condition bpnumber [condition],设置条件断点,下面语句就是对第4个断点加上条件“a==3”

    (Pdb) condition 4 a==3

    (Pdb) b

    Num Type Disp Enb Where

    4 breakpoint keep yes at /home/jchen/regression/regressionLogCMP.py:504

    stop only if a==3

    cl(ear),如果后面带有参数,就是清除指定的断点(我在Python2.4上从来没成功过!!!);如果不带参数就是清除所有的断点

    (Pdb) cl

    Clear all breaks? y

    disable/enable,禁用/激活断点

    (Pdb) disable 3

    (Pdb) b

    Num Type Disp Enb Where

    3 breakpoint keep no at /home/jchen/regression/regressionLogCMP.py:505

    n(ext),让程序运行下一行,如果当前语句有一个函数调用,用n是不会进入被调用的函数体中的

    s(tep),跟n相似,但是如果当前有一个函数调用,那么s会进入被调用的函数体中

    c(ont(inue)),让程序正常运行,直到遇到断点

    j(ump),让程序跳转到指定的行数

    (Pdb) j 497

    > /home/jchen/regression/regressionLogCMP.py(497)compareLog()

    -> pdb.set_trace()

    a(rgs),打印当前函数的参数

    (Pdb) a

    _logger =

    _base = ./base/MRM-8137.log

    _new = ./new/MRM-8137.log

    _caseid = 5550001

    _toStepNum = 10

    _cmpMap = {‘_bcmpbinarylog’: ‘True’, ‘_bcmpLog’: ‘True’, ‘_bcmpresp’: ‘True’}

    p,最有用的命令之一,打印某个变量

    (Pdb) p _new

    u’./new/MRM-8137.log’

    !,感叹号后面跟着语句,可以直接改变某个变量

    q(uit),退出调试

    发现在命令行下调试程序也是一件挺有意思的事情,记录下来分享一下

    w ,Print a stack trace, with the most recent frame at the bottom.An arrow indicates the "current frame", which determines the context of most commands. 'bt' is an alias for this command.

    d ,Move the current frame one level down in the stack trace

    (to a newer frame).

    u ,Move the current frame one level up in the stack trace

    (to an older frame).

    使用 u 和 d 命令,我们可以在栈帧之间切换,用以获取其相关上下文变量信息。w可以显示最近的一些栈帧信息。

    如何用pdb进行python调试?

    Debug 对于是一项非常重要的功能,它能够帮助我们准确的定位错误,发现程序中的 bug。

    python 提供了一系列 debug 的工具和包,可供我们选择。

    pdb 是 python 自带的一个包,为 python 程序提供了一种交互的源代码调试功能,主要特性包括

    设置断点

    单步调试

    进入函数调试

    查看当前代码

    查看栈片段

    动态改变变量的值

    启动方式:python -m pdb xxx.py

    显示全文