summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-09-12 05:28:42 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-09-12 05:28:42 (GMT)
commit69976a7fbe7b3296d97a1e3169ec2b361feadfa9 (patch)
treed96c7eb7ffb90aa518e859b27bb17a358104a206 /Misc
parent22450c2aee704f2485940ee792e301fc00dfde58 (diff)
downloadcpython-69976a7fbe7b3296d97a1e3169ec2b361feadfa9.zip
cpython-69976a7fbe7b3296d97a1e3169ec2b361feadfa9.tar.gz
cpython-69976a7fbe7b3296d97a1e3169ec2b361feadfa9.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 3271861..0599cbc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -122,6 +122,9 @@ Library
to fetch the original errno, or to filter timeout errors. Now the
original error is re-raised.
+- Issue #9826: OrderedDict.__repr__ can now handle self-referential
+ values: d['x'] = d.
+
- Issue #9758: When fcntl.ioctl() was called with mutable_flag set to True,
and the passed buffer was exactly 1024 bytes long, the buffer wouldn't
be updated back after the system call. Original patch by Brian Brazil.