Как получить полную трассировку стека от самого объекта Exception?
Рассмотрим следующий код как уменьшенный пример проблемы:
last_exception = None
try:
raise Exception('foo failed')
except Exception as e:
last_exception = e
# this happens somewhere else, decoupled from the original raise
print_exception_stack_trace(last_exception)