-
-
Notifications
You must be signed in to change notification settings - Fork 30.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
GH-117759: Document incremental GC #123266
Conversation
When you're done making the requested changes, leave the comment: |
Co-authored-by: Michael Droettboom <[email protected]>
I have made the requested changes; please review again |
Thanks for making the requested changes! @mdboom: please review the changes made to this pull request. |
Thanks @markshannon for the PR 🌮🎉.. I'm working now to backport this PR to: 3.13. |
* Update what's new * Update gc module docs and fix inconsistency in gc.get_objects (cherry picked from commit f49a916) Co-authored-by: Mark Shannon <[email protected]>
GH-123395 is a backport of this pull request to the 3.13 branch. |
) (python#123395)" This reverts commit aca6511.
This PR updates the docs for what's new in 3.13 and updates the docs for the GC module.
It also includes a small behavioral change to
gc.get_objects()
to make it more consistent with the result of the gc module API and consistent with incremental collection:gc.get_objects(1)
now returns no objects.gc_get_objects(2)
now returns all objects in the old generation.📚 Documentation preview 📚: https://cpython-previews--123266.org.readthedocs.build/