Skip to content

bpo-36016: Allow gc.getobjects to return the objects in a specific generation #11909

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

Merged
merged 9 commits into from
Feb 23, 2019
Merged
Prev Previous commit
Next Next commit
Add News entry
  • Loading branch information
pablogsal committed Feb 17, 2019
commit a38ce3e2e5d48cc86c0b39a928e2466e5b106a19
7 changes: 7 additions & 0 deletions Doc/whatsnew/3.8.rst
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,13 @@ gettext
Added :func:`~gettext.pgettext` and its variants.
(Contributed by Franz Glasner, Éric Araujo, and Cheryl Sabella in :issue:`2504`.)


gc
--
:func:`~gc.get_objects` can now receive an optional parameter indicating a
generation to get objects from. Contributed in :issue:`36016` by Pablo Galindo.


gzip
----

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
``gc.get_objects`` can now receive an optional parameter indicating a
generation to get objects from. Patch by Pablo Galindo.