diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-02-08 00:56:02 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-02-08 00:56:02 (GMT) |
commit | b01aa430d5bf82c59c1440e3384a00845cf1b4a2 (patch) | |
tree | c659ffb420a9c69de820a5587afc3d3c52e9d016 /Misc | |
parent | 48397d6c2273769c26f4b8cef2a839a74d0da1a5 (diff) | |
download | cpython-b01aa430d5bf82c59c1440e3384a00845cf1b4a2.zip cpython-b01aa430d5bf82c59c1440e3384a00845cf1b4a2.tar.gz cpython-b01aa430d5bf82c59c1440e3384a00845cf1b4a2.tar.bz2 |
issue 2045: Infinite recursion when printing a subclass of defaultdict,
if default_factory is set to a bound method.
Will backport.
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 ----------------- +- Issue #2045: Fix an infinite recursion triggered when printing a subclass of + collections.defaultdict, if its default_factory is set to a bound method. + - Fixed a minor memory leak in dictobject.c. The content of the free list was not freed on interpreter shutdown. |