summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-02-06 12:44:34 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-02-06 12:44:34 (GMT)
commit6075a82243c7646dcdd45b424cf3e5c676f31ccf (patch)
treed349099fa3b0f7fe9d5c3b364b929ffe86a1db58 /Misc
parent45eda6469124855d349666184c6f92058a9e08f0 (diff)
downloadcpython-6075a82243c7646dcdd45b424cf3e5c676f31ccf.zip
cpython-6075a82243c7646dcdd45b424cf3e5c676f31ccf.tar.gz
cpython-6075a82243c7646dcdd45b424cf3e5c676f31ccf.tar.bz2
Limit free list of method and builtin function objects to 256 entries each.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7bb43e1..51eca00 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.6 alpha 1?
Core and builtins
-----------------
+- Limit free list of method and builtin function objects to 256 entries
+ each.
+
- Patch #1953: Added ``sys._compact_freelists()`` and the C API functions
``PyInt_CompactFreeList`` and ``PyFloat_CompactFreeList``
to compact the internal free lists of pre-allocted ints and floats.