summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-05-28 20:22:34 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-05-28 20:22:34 (GMT)
commite1ad3dac3ddc64803b7744c9ba8ce71dbe74c913 (patch)
tree122e5a787b078e038fb5ca93e80b5458c3d0b9a1 /Misc/NEWS
parent031e25b0f74ae2c7c82a6d2a3c227e74278b22d9 (diff)
downloadcpython-e1ad3dac3ddc64803b7744c9ba8ce71dbe74c913.zip
cpython-e1ad3dac3ddc64803b7744c9ba8ce71dbe74c913.tar.gz
cpython-e1ad3dac3ddc64803b7744c9ba8ce71dbe74c913.tar.bz2
Issue #14775: Fix a potential quadratic dict build-up due to the garbage collector repeatedly trying to untrack dicts.
Additional comments by Tim Silk.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 059a1e0..1a01113 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.4
Core and Builtins
-----------------
+- Issue #14775: Fix a potential quadratic dict build-up due to the garbage
+ collector repeatedly trying to untrack dicts.
+
- Issue #14494: Fix __future__.py and its documentation to note that
absolute imports are the default behavior in 3.0 instead of 2.7.
Patch by Sven Marnach.