In python3, running the following will result in backtrace not identifying a traceback: ```python try: raise Exception except Exception: _, __, tb = sys.exc_info() raise Exception(tb) ``` ```bash $ python test.py 2>&1 | backtrace ```