Python - 在异常被抛出时启动交互式调试器

时间:2012-11-01 09:44:38

标签: python debugging pdb

有没有办法让python程序启动一个交互式调试器,比如import pdb; pdb.set_trace()而不是实际抛出异常?

我知道使这项工作有困难,但它比一个巨大的堆栈跟踪更有价值,之后我必须用它来确定插入断点的位置,然后重新启动程序来调试它。我知道简单地让调试器启动而不是抛出异常是没有意义的,因为任何异常都可以在一个或另一个级别捕获,所以如果我只能选择一个异常列表,交互式调试会话将启动反而它们被抛出(因为我知道这个列表中的例外实际上是“错误”,之后不会有任何有意义的程序行为)......

我听说Common Lisp有这样的东西,但我不知道它是如何工作的,只是“真正的lispers”赞美它...

4 个答案:

答案 0 :(得分:14)

最简单的方法是将整个代码包装在try块中,如下所示:

if __name__ == '__main__':

    try:
        raise Exception()
    except:
        import pdb
        pdb.set_trace()

有一个更复杂的解决方案,使用sys.excepthook覆盖未捕获异常的处理,如this recipe中所述:

## {{{ http://code.activestate.com/recipes/65287/ (r5)
# code snippet, to be included in 'sitecustomize.py'
import sys

def info(type, value, tb):
   if hasattr(sys, 'ps1') or not sys.stderr.isatty():
      # we are in interactive mode or we don't have a tty-like
      # device, so we call the default hook
      sys.__excepthook__(type, value, tb)
   else:
      import traceback, pdb
      # we are NOT in interactive mode, print the exception...
      traceback.print_exception(type, value, tb)
      print
      # ...then start the debugger in post-mortem mode.
      pdb.pm()

sys.excepthook = info
## end of http://code.activestate.com/recipes/65287/ }}}

上面的代码应该包含在site-packages目录中名为sitecustomize.py的文件中,该文件由python自动导入。调试器仅在python以非交互模式运行时启动。

答案 1 :(得分:3)

这个问题很老了,所以这主要是为了将来我

try:
    ...
except:
    import traceback, pdb, sys
    traceback.print_exc()
    print ''
    pdb.post_mortem()
    sys.exit(1)

答案 2 :(得分:0)

如果你在REPL内,你可以

import sys
import pdb
pdb.post_mortem(sys.last_traceback)

请参阅https://docs.python.org/2/library/pdb.htmlhttps://docs.python.org/3/library/traceback.html

答案 3 :(得分:0)

我写了a package以在异常时启动pdb。它需要@ boreis-gorelik的答案,并在运行时修改解释器状态,因此不需要更改代码:

安装

 pip install mort

用法

mort <file.py or module to execute>

发生异常时,pdb repl应该在给定的终端

中开始