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 vstinner
Recipients vstinner
Date 2020-03-23.14:36:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1584974213.54.0.484285807208.issue40048@roundup.psfhosted.org>
In-reply-to
Content
tstate->frame is a borrowed references to the current frame object. It's set tp the frame at _PyEval_EvalFrameDefault() and resets to frame->f_back at _PyEval_EvalFrameDefault() exit.

Problem: when _PyCode_InitOpcache() fails, tstate->frame is not reset to frame->f_back.
History
Date User Action Args
2020-03-23 14:36:53vstinnersetrecipients: + vstinner
2020-03-23 14:36:53vstinnersetmessageid: <1584974213.54.0.484285807208.issue40048@roundup.psfhosted.org>
2020-03-23 14:36:53vstinnerlinkissue40048 messages
2020-03-23 14:36:53vstinnercreate