diff options
author | Christian Heimes <christian@cheimes.de> | 2008-02-06 12:44:34 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-02-06 12:44:34 (GMT) |
commit | 6075a82243c7646dcdd45b424cf3e5c676f31ccf (patch) | |
tree | d349099fa3b0f7fe9d5c3b364b929ffe86a1db58 /Misc | |
parent | 45eda6469124855d349666184c6f92058a9e08f0 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |