diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-05-28 20:22:34 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-05-28 20:22:34 (GMT) |
commit | e1ad3dac3ddc64803b7744c9ba8ce71dbe74c913 (patch) | |
tree | 122e5a787b078e038fb5ca93e80b5458c3d0b9a1 /Misc | |
parent | 031e25b0f74ae2c7c82a6d2a3c227e74278b22d9 (diff) | |
download | cpython-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')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -866,6 +866,7 @@ Joel Shprentz Itamar Shtull-Trauring Eric Siegerman Paul Sijben +Tim Silk Kirill Simonov Nathan Paul Simons Janne Sinkkonen @@ -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. |