issue 2045: Infinite recursion when printing a subclass of defaultdict,
if default_factory is set to a bound method.
Will backport.
diff --git a/Misc/NEWS b/Misc/NEWS
index af9f364..7975cbb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@
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.