summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-09-12 05:15:22 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-09-12 05:15:22 (GMT)
commitdc08a143e00d60aa0ce6ee946ad343b9ec2f80da (patch)
treeb039885d5aa71db994cb69b350a74d1c6fa858ac /Misc
parentfa11db0a02f22f8141206102efc21b125989364d (diff)
downloadcpython-dc08a143e00d60aa0ce6ee946ad343b9ec2f80da.zip
cpython-dc08a143e00d60aa0ce6ee946ad343b9ec2f80da.tar.gz
cpython-dc08a143e00d60aa0ce6ee946ad343b9ec2f80da.tar.bz2
Issue #9826: Handle recursive repr in collections.OrderedDict.
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 ab4a06f..c49c96e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,9 @@ Core and Builtins
Library
-------
+- Issue #9826: OrderedDict.__repr__ can now handle self-referential
+ values: d['x'] = d.
+
- Issue #9825: Using __del__ in the definition of collections.OrderedDict made
it possible for the user to create self-referencing ordered dictionaries
which become permanently uncollectable GC garbage. Reinstated the Py3.1