summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-10-30 21:43:19 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-10-30 21:43:19 (GMT)
commitd4156c16938fe1df957f4cf86420ae5da73dd3f8 (patch)
tree4fa395468950ad78eab189b1aab4bbcb53286d91 /Misc
parentd2217a83d4e2ee9aec1a0bf590820aa77b7ed5e7 (diff)
downloadcpython-d4156c16938fe1df957f4cf86420ae5da73dd3f8.zip
cpython-d4156c16938fe1df957f4cf86420ae5da73dd3f8.tar.gz
cpython-d4156c16938fe1df957f4cf86420ae5da73dd3f8.tar.bz2
Issue #16351: New function gc.get_stats() returns per-generation collection statistics.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 739b52b..c101aa5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -65,6 +65,9 @@ Core and Builtins
Library
-------
+- Issue #16351: New function gc.get_stats() returns per-generation collection
+ statistics.
+
- Issue #14897: Enhance error messages of struct.pack and
struct.pack_into. Patch by Matti Mäki.