summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-05-28 20:23:42 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-05-28 20:23:42 (GMT)
commit1cfe7d9a84d5f4d8950f2b5a82be3bb25a725b62 (patch)
tree79fb5525fccc44f1a136701ee94dc0f2eb4bc46f /Misc
parentd102e04e4a9f84f632c5dfff5e7d3aae7022b33e (diff)
parente1ad3dac3ddc64803b7744c9ba8ce71dbe74c913 (diff)
downloadcpython-1cfe7d9a84d5f4d8950f2b5a82be3bb25a725b62.zip
cpython-1cfe7d9a84d5f4d8950f2b5a82be3bb25a725b62.tar.gz
cpython-1cfe7d9a84d5f4d8950f2b5a82be3bb25a725b62.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/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 371668f..74bf123 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -957,6 +957,7 @@ Joel Shprentz
Itamar Shtull-Trauring
Eric Siegerman
Paul Sijben
+Tim Silk
Kirill Simonov
Nathan Paul Simons
Adam Simpkins
diff --git a/Misc/NEWS b/Misc/NEWS
index 4b7cddb..011cdf0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3.0 Alpha 4?
Core and Builtins
-----------------
+- Issue #14775: Fix a potential quadratic dict build-up due to the garbage
+ collector repeatedly trying to untrack dicts.
+
- Issue #14857: fix regression in references to PEP 3135 implicit __class__
closure variable (Reopens issue #12370)