-
-
Notifications
You must be signed in to change notification settings - Fork 30.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gh-124068: Fix reference leak with generators in the free-threaded build #124069
Conversation
…ded build If the generator is already cleared, then most fields in the generator's frame are not valid other than f_executable. The invalid fields may contain dangling pointers and should not be used.
!buildbot NoGIL Refleaks |
🤖 New build scheduled with the buildbot fleet by @colesbury for commit 8d220b7 🤖 The command will test the builders whose names match following regular expression: The builders matched are:
|
I can confirm that this solves |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
!buildbot AMD64 Windows10 |
The Windows10 buildbot problem is fixed in: |
If the generator is already cleared, then most fields in the generator's frame are not valid other than
f_executable
. The invalid fields may contain dangling pointers and should not be used.test_asyncio.test_base_events
leaks references in free-threaded build #124068