Dennis Sweeney <sweeney.dennis...@gmail.com> added the comment:

Here's shorter reproducer not involving unittest:


import sys

try:
    aab
except:
    exc_type, exc_value, tb = sys.exc_info()
    exc_value.with_traceback(None)
    raise ZeroDivisionError()

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue45826>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to