-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
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
bpo-1635741: Fix reference cycle by calling explicit gc collection in main interpreter #21902
Conversation
Before this PR: After this PR: |
Merged since it seems to fix multiple issues: #21902 (comment) Does it fix your issue with encoding names and encodings._aliases? |
cc @ncoghlan @ericsnowcurrently: Python finalization is getting better ;-) Yet another GC collection at exit! |
Yes, this PR have fix my issue. there have no remaining encodings.aliases in refdumps. |
I'm not sure that the GC is still fully functionnal after PyInterpreterState is cleared, but at least, it seems like there were a bunch of reference cycles. cc @pablogsal |
…honGH-21902) Fix a reference cycle by triggering an explicit GC collection after calling PyInterpreterState_Clear().
Just curious, what are the three leaks. |
You found this detail. I checked that some |
…honGH-21902) Fix a reference cycle by triggering an explicit GC collection after calling PyInterpreterState_Clear().
Authored-by: Victor Stinner vstinner@python.org
https://bugs.python.org/issue1635741