summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2019-02-23 03:02:06 (GMT)
committerInada Naoki <methane@users.noreply.github.com>2019-02-23 03:02:06 (GMT)
commit175421b58cc97a2555e474f479f30a6c5d2250b0 (patch)
tree05724237baa3c2334c7a0cd07081009cf9a7dc5b /Misc
parentdf5cdc11123a35065bbf1636251447d0bfe789a5 (diff)
downloadcpython-175421b58cc97a2555e474f479f30a6c5d2250b0.zip
cpython-175421b58cc97a2555e474f479f30a6c5d2250b0.tar.gz
cpython-175421b58cc97a2555e474f479f30a6c5d2250b0.tar.bz2
bpo-36016: Add generation option to gc.getobjects() (GH-11909)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2019-02-17-20-23-54.bpo-36016.5Hns-f.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-02-17-20-23-54.bpo-36016.5Hns-f.rst b/Misc/NEWS.d/next/Core and Builtins/2019-02-17-20-23-54.bpo-36016.5Hns-f.rst
new file mode 100644
index 0000000..078be94
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2019-02-17-20-23-54.bpo-36016.5Hns-f.rst
@@ -0,0 +1,2 @@
+``gc.get_objects`` can now receive an optional parameter indicating a
+generation to get objects from. Patch by Pablo Galindo.