diff options
author | Christian Heimes <christian@cheimes.de> | 2008-02-08 00:11:31 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-02-08 00:11:31 (GMT) |
commit | f75dbef208673865b31d32d5a2196b15b1b03024 (patch) | |
tree | 45cbf29ffd048f33fa21b1aae333d50209b7a6ea /Misc | |
parent | 83525859092e4bc2605503dc02abc8e27f2820b0 (diff) | |
download | cpython-f75dbef208673865b31d32d5a2196b15b1b03024.zip cpython-f75dbef208673865b31d32d5a2196b15b1b03024.tar.gz cpython-f75dbef208673865b31d32d5a2196b15b1b03024.tar.bz2 |
Deallocate content of the dict free list on interpreter shutdown
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 ----------------- +- Fixed a minor memory leak in dictobject.c. The content of the free + list was not freed on interpreter shutdown. + - Limit free list of method and builtin function objects to 256 entries each. |