GH-100964: Fix reference cycle in exhausted generator frames#141112
Merged
savannahostrowski merged 6 commits intopython:mainfrom Dec 17, 2025
Merged
GH-100964: Fix reference cycle in exhausted generator frames#141112savannahostrowski merged 6 commits intopython:mainfrom
savannahostrowski merged 6 commits intopython:mainfrom
Conversation
Member
Author
|
@markshannon Are you still the right person to take a look at this 😄 ? |
Contributor
|
I came across this bug today while writing an asyncio test and this fixed it. ping @markshannon for review |
Misc/NEWS.d/next/Core_and_Builtins/2025-11-06-05-21-25.gh-issue-100964.TxPf1b.rst
Outdated
Show resolved
Hide resolved
kumaraditya303
approved these changes
Dec 17, 2025
|
Thanks @savannahostrowski for the PR 🌮🎉.. I'm working now to backport this PR to: 3.13, 3.14. |
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this pull request
Dec 17, 2025
…ythonGH-141112) (cherry picked from commit 92243dc) Co-authored-by: Savannah Ostrowski <savannah@python.org>
|
Sorry, @savannahostrowski, I could not cleanly backport this to |
|
GH-142902 is a backport of this pull request to the 3.14 branch. |
savannahostrowski
added a commit
that referenced
this pull request
Dec 17, 2025
savannahostrowski
added a commit
that referenced
this pull request
Dec 17, 2025
This was referenced Feb 17, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
So after spelunking here it appears that the issue here is that we can't clear
frame->previousafter_PyFrame_ClearExceptCodeinclear_gen_framebecause_PyFrame_ClearExceptCodecallstake_ownershipwhich copies the frame with a stalepreviouspointer. This makesf_backpoint to the caller, instead ofNone.