最佳答案
给定一个异常对象(来源不明)有办法获得它的回溯吗? 我有这样的代码:
def stuff():
try:
.....
return useful
except Exception as e:
return e
result = stuff()
if isinstance(result, Exception):
result.traceback <-- How?
一旦我拥有了 Exception 对象,如何从中提取回溯?