捕获输出如下的异常:
Traceback (most recent call last):
File "c:/tmp.py", line 1, in <module>
4 / 0
ZeroDivisionError: integer division or modulo by zero
我想把它格式化为:
ZeroDivisonError, tmp.py, 1
捕获输出如下的异常:
Traceback (most recent call last):
File "c:/tmp.py", line 1, in <module>
4 / 0
ZeroDivisionError: integer division or modulo by zero
我想把它格式化为:
ZeroDivisonError, tmp.py, 1
当前回答
这是我用来获取文件名的。
__file__.__str__
总之,我创建了一个页面来显示错误。返回此异常。
context={
'details':'Type of error:{}:Function name:{}:Line number:{}'.format(exc_type, fname, exc_tb.tb_lineno),
'error_details':str(e),
'filename':__file__.__str__,
})
发生异常时的情况:
其他回答
你可以在不导入traceback的情况下实现这一点:
try:
func1()
except Exception as ex:
trace = []
tb = ex.__traceback__
while tb is not None:
trace.append({
"filename": tb.tb_frame.f_code.co_filename,
"name": tb.tb_frame.f_code.co_name,
"lineno": tb.tb_lineno
})
tb = tb.tb_next
print(str({
'type': type(ex).__name__,
'message': str(ex),
'trace': trace
}))
输出:
{
'type': 'ZeroDivisionError',
'message': 'division by zero',
'trace': [
{
'filename': '/var/playground/main.py',
'name': '<module>',
'lineno': 16
},
{
'filename': '/var/playground/main.py',
'name': 'func1',
'lineno': 11
},
{
'filename': '/var/playground/main.py',
'name': 'func2',
'lineno': 7
},
{
'filename': '/var/playground/my.py',
'name': 'test',
'lineno': 2
}
]
}
这是我用来获取文件名的。
__file__.__str__
总之,我创建了一个页面来显示错误。返回此异常。
context={
'details':'Type of error:{}:Function name:{}:Line number:{}'.format(exc_type, fname, exc_tb.tb_lineno),
'error_details':str(e),
'filename':__file__.__str__,
})
发生异常时的情况:
最简单的形式适合我。
import traceback
try:
print(4/0)
except ZeroDivisionError:
print(traceback.format_exc())
输出
Traceback (most recent call last):
File "/path/to/file.py", line 51, in <module>
print(4/0)
ZeroDivisionError: division by zero
Process finished with exit code 0
没有任何导入,但也不兼容导入的模块:
try:
raise TypeError("Hello, World!") # line 2
except Exception as e:
print(
type(e).__name__, # TypeError
__file__, # /tmp/example.py
e.__traceback__.tb_lineno # 2
)
$ python3 /tmp/example.py TypeError /tmp/example.py
重申一下,这不能跨导入或模块工作,所以如果你导入X;试题:X.example ();那么文件名和行号将指向包含X.example()的行,而不是X.example()中出错的行。如果有人知道如何轻松地从最后一个堆栈跟踪行中获得文件名和行号(我期望类似e[-1]的内容)。文件名,但没有这样的运气),请改进这个答案。
下面是一个显示发生异常的行号的示例。
import sys
try:
print(5/0)
except Exception as e:
print('Error on line {}'.format(sys.exc_info()[-1].tb_lineno), type(e).__name__, e)
print('And the rest of program continues')