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.

classification
Title: PEP 523 no longer works
Type: behavior Stage: resolved
Components: Interpreter Core Versions: Python 3.11
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Mark.Shannon Nosy List: Mark.Shannon
Priority: normal Keywords: patch

Created on 2021-10-11 09:11 by Mark.Shannon, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 28871 merged Mark.Shannon, 2021-10-11 09:26
Messages (1)
msg403637 - (view) Author: Mark Shannon (Mark.Shannon) * (Python committer) Date: 2021-10-11 09:11
https://github.com/python/cpython/pull/28488 breaks PEP 523 as it bypasses _PyEval_EvalFrame.

The fix is simple, we need to check tstate->interp->eval_frame.
History
Date User Action Args
2022-04-11 14:59:51adminsetgithub: 89593
2021-10-11 10:51:00Mark.Shannonsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2021-10-11 09:26:07Mark.Shannonsetkeywords: + patch
stage: patch review
pull_requests: + pull_request27169
2021-10-11 09:11:00Mark.Shannoncreate