backtrace
backtrace copied to clipboard
Backtrace does not handle nested exceptions
In python3, running the following will result in backtrace not identifying a traceback:
try:
raise Exception
except Exception:
_, __, tb = sys.exc_info()
raise Exception(tb)
$ python test.py 2>&1 | backtrace