summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-02-08 00:56:02 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-02-08 00:56:02 (GMT)
commitb01aa430d5bf82c59c1440e3384a00845cf1b4a2 (patch)
treec659ffb420a9c69de820a5587afc3d3c52e9d016 /Misc
parent48397d6c2273769c26f4b8cef2a839a74d0da1a5 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index af9f364..7975cbb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.