backtrace icon indicating copy to clipboard operation
backtrace copied to clipboard

Backtrace does not handle nested exceptions

Open nir0s opened this issue 8 years ago • 0 comments

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

nir0s avatar Mar 03 '17 13:03 nir0s