summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-01-09 21:40:55 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-01-09 21:40:55 (GMT)
commit4c5ecb7cbbb7b20e8c643addc092edf72e753e16 (patch)
tree81a4a73b9d9fe7aeb0a5c808d5a4fabfe0644f46 /Misc
parent0e2d8c36e3b52b7ff9d2926d1c2ad4be9df84710 (diff)
downloadcpython-4c5ecb7cbbb7b20e8c643addc092edf72e753e16.zip
cpython-4c5ecb7cbbb7b20e8c643addc092edf72e753e16.tar.gz
cpython-4c5ecb7cbbb7b20e8c643addc092edf72e753e16.tar.bz2
Issue #4074: Change the criteria for doing a full garbage collection (i.e.
collecting the oldest generation) so that allocating lots of objects without destroying them does not show quadratic performance. Based on a proposal by Martin von Löwis at http://mail.python.org/pipermail/python-dev/2008-June/080579.html.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7a903d2..fdb73d3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,12 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
+- Issue #4074: Change the criteria for doing a full garbage collection (i.e.
+ collecting the oldest generation) so that allocating lots of objects without
+ destroying them does not show quadratic performance. Based on a proposal by
+ Martin von Löwis at
+ http://mail.python.org/pipermail/python-dev/2008-June/080579.html.
+
- Issue #4850: Change COUNT_ALLOCS variables to Py_ssize_t.
- Issue #1180193: When importing a module from a .pyc (or .pyo) file with