7

在 pdb 控制台中,输入导致异常的语句只会导致单行堆栈跟踪,例如

(Pdb) someFunc()
*** TypeError: __init__() takes exactly 2 arguments (1 given)

但是,我想弄清楚someFunc错误的确切来源。即在这种情况下,__init__附加到哪个类。

有没有办法在 Pdb 中获得完整的堆栈跟踪?

4

2 回答 2

8

最简单的方法是在代码中定义一个调用 someFunc() 并打印回溯然后从 Pdb 调用它的函数。

或者,您可以自己打印回溯。鉴于此源代码:

def foo(a):
    pass

def bar(b):
    foo(b, 2)

def some_func():
    bar(3)

if __name__=='__main__':
    import pdb
    pdb.set_trace()

然后我们可以这样做:

C:\temp>test.py
--Return--
> c:\temp\test.py(12)<module>()->None
-> pdb.set_trace()
(Pdb) import traceback
(Pdb) exec "try: some_func()\nexcept: traceback.print_exc()"
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "C:\temp\test.py", line 8, in some_func
    bar(3)
  File "C:\temp\test.py", line 5, in bar
    foo(b, 2)
TypeError: foo() takes exactly 1 argument (2 given)
(Pdb)
于 2010-05-03T12:46:45.183 回答
1

pdb支持debug递归调用语句:

$ nosetests xxxx -x --pdb
-> some code line with error
(Pdb) debug os.sdfafa()  # something that raises exception
ENTERING RECURSIVE DEBUGGER
> <string>(1)<module>()  # new line that raised excetion
((Pdb))  # number of parentheses indicates debugger recusion depth
((Pdb)) debug os.someothersdfsdf()
ENTERING RECURSIVE DEBUGGER
> <string>(1)<module>()
(((Pdb))) 
于 2014-04-02T11:24:21.780 回答