This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author chris.jerdonek
Recipients aeros, asvetlov, carltongibson, chris.jerdonek, eamanu, felixxm, yselivanov
Date 2020-05-20.12:06:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1589976392.14.0.213653681927.issue40696@roundup.psfhosted.org>
In-reply-to
Content
FWIW, I found that the following hangs, but it also hangs on earlier versions of Python:

import traceback

try:
    raise RuntimeError
except Exception as exc:
    print(f'handling: {exc!r}')
    exc.__context__ = exc
    print('printing traceback')
    print(traceback.format_exc())  # hangs

Is this a separate bug? So maybe the issue is that the new code is letting things get into this state. Some of my changes added new chaining in various places, so that would fit (but still investigating).
History
Date User Action Args
2020-05-20 12:06:32chris.jerdoneksetrecipients: + chris.jerdonek, asvetlov, yselivanov, eamanu, aeros, carltongibson, felixxm
2020-05-20 12:06:32chris.jerdoneksetmessageid: <1589976392.14.0.213653681927.issue40696@roundup.psfhosted.org>
2020-05-20 12:06:32chris.jerdoneklinkissue40696 messages
2020-05-20 12:06:32chris.jerdonekcreate