summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2008-12-17 22:46:54 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2008-12-17 22:46:54 (GMT)
commit73c0e65fc353cbb80cabae8d1123716dcf379a20 (patch)
tree95d23352480ad95a4a5023fe24aaf2d466af3404 /Misc/NEWS
parent1a707981c8b57e5ca7c5b8aa38d3e5e6ca235dbf (diff)
downloadcpython-73c0e65fc353cbb80cabae8d1123716dcf379a20.zip
cpython-73c0e65fc353cbb80cabae8d1123716dcf379a20.tar.gz
cpython-73c0e65fc353cbb80cabae8d1123716dcf379a20.tar.bz2
Issue #2467: gc.DEBUG_STATS reports invalid elapsed times.
Patch by Neil Schemenauer, very slightly modified.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 09c3ceb..886f73b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
+- Issue #2467: gc.DEBUG_STATS reported invalid elapsed times. Also, always
+ print elapsed times, not only when some objects are uncollectable /
+ unreachable. Original patch by Neil Schemenauer.
+
- Issue #3439: Add a bit_length method to int and long.
- Issue #2183: Simplify and optimize bytecode for list comprehensions.