用pdb調(diào)試有多種方式可選:
1. 命令行啟動目標程序,加上-m參數(shù),這樣調(diào)用myscript.py的話斷點就是程序的執(zhí)行第一行之前
代碼如下:
python -m pdb myscript.py
代碼如下:
>>> import pdb
>>> import mymodule
>>> pdb.run(‘mymodule.test()')
3. 比較常用的,就是在程序中間插入一段程序,相對于在一般IDE里面打上斷點然后啟動debug,不過這種方式是hardcode的
代碼如下:
if __name__ == "__main__":
a = 1
import pdb
pdb.set_trace()
b = 2
c = a + b
print (c)
常用的調(diào)試命令
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 “l(fā)oad cmp logs error!”
506 raise Exception, “l(fā)oad cmp logs error!”
507
b(reak), 設(shè)置斷點,例如 “b 77″,就是在當前腳本的77行打上斷點,還能輸入函數(shù)名作為參數(shù),斷點就打到具體的函數(shù)入口,如果只敲b,會顯示現(xiàn)有的全部斷點
代碼如下:
(Pdb) b 504
Breakpoint 4 at /home/jchen/regression/regressionLogCMP.py:504
condition bpnumber [condition],設(shè)置條件斷點,下面語句就是對第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
代碼如下:
(Pdb) cl
Clear all breaks? y
代碼如下:
(Pdb) disable 3
(Pdb) b
Num Type Disp Enb Where
3 breakpoint keep no at /home/jchen/regression/regressionLogCMP.py:505
s(tep),跟n相似,但是如果當前有一個函數(shù)調(diào)用,那么s會進入被調(diào)用的函數(shù)體中
c(ont(inue)),讓程序正常運行,直到遇到斷點
j(ump),讓程序跳轉(zhuǎn)到指定的行數(shù)
代碼如下:
(Pdb) j 497
> /home/jchen/regression/regressionLogCMP.py(497)compareLog()
-> pdb.set_trace()
代碼如下:
(Pdb) a
_logger =
_base = ./base/MRM-8137.log
_new = ./new/MRM-8137.log
_caseid = 5550001
_toStepNum = 10
_cmpMap = {‘_bcmpbinarylog': ‘True', ‘_bcmpLog': ‘True', ‘_bcmpresp': ‘True'}
代碼如下:
(Pdb) p _new
u'./new/MRM-8137.log'
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 命令,我們可以在棧幀之間切換,用以獲取其相關(guān)上下文變量信息。w可以顯示最近的一些棧幀信息。
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com