-
Notifications
You must be signed in to change notification settings - Fork 9
Backtrace does not handle nested exceptions #6
Open
Labels
Description
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