[issue24696] Don't use None as sentinel for traceback

2018-09-10 Thread Benjamin Peterson
Benjamin Peterson added the comment: 3.4 is out of bugfix support. -- nosy: +benjamin.peterson resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker

[issue24696] Don't use None as sentinel for traceback

2015-07-23 Thread Adam Bartoš
New submission from Adam Bartoš: There is a subtle bug in Python 3.4 implementation of traceback library: import traceback try: ... 1 / 0 ... except Exception as e: ... exc = e ... traceback.print_exception(exc.__class__, exc, exc.__traceback__) Traceback (most recent call last):