当我用sys.excepthook
捕获意外错误时import sys
import traceback
def handleException(excType, excValue, trace):
print 'error'
traceback.print_exception(excType, excValue, trace)
sys.excepthook = handleException
h = 1
k = 0
print h/k
这是我得到的输出
error
Traceback (most recent call last):
File "test.py", line 13, in <module>
print h/k
ZeroDivisionError: integer division or modulo by zero
如何在追溯字符串http://www.doughellmann.com/PyMOTW/cgitb/中包含变量值(h,k,...)?当我包含cgitb时结果是一样的。
修改
很棒的答案我只是这样修改它所以它在文件中记录跟踪
def handleException(excType, excValue, trace):
cgitb.Hook(logdir=os.path.dirname(__file__),
display=False,
format='text')(excType, excValue, trace)
答案 0 :(得分:9)
通过查看cgitb.py
的来源,您应该可以使用以下内容:
import sys
import traceback
import cgitb
def handleException(excType, excValue, trace):
print 'error'
cgitb.Hook(format="text")(excType, excValue, trace)
sys.excepthook = handleException
h = 1
k = 0
print h/k
答案 1 :(得分:0)
作为最佳实践,您应该避免在输出或异常中添加dubug信息,有一些工具可以通过单行代码来帮助您解决这一问题。这是一个示例:
看看一些相关的软件包。为了简单使用,您可以选择traceback-with-variables(pip install traceback-with-variables
),这是明信片