diff options
author | Raymond Hettinger <python@rcn.com> | 2010-09-12 05:15:22 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-09-12 05:15:22 (GMT) |
commit | dc08a143e00d60aa0ce6ee946ad343b9ec2f80da (patch) | |
tree | b039885d5aa71db994cb69b350a74d1c6fa858ac /Misc | |
parent | fa11db0a02f22f8141206102efc21b125989364d (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |