summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-08-01 22:10:57 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-08-01 22:10:57 (GMT)
commit5be21b7a5a43a2e992be3f84b0b127d48abadb20 (patch)
tree3c25c28d4548cf03692484dd1904de443bc01afe /Misc
parentda6401dab82928adc4e31eef15ca884c694ac161 (diff)
downloadcpython-5be21b7a5a43a2e992be3f84b0b127d48abadb20.zip
cpython-5be21b7a5a43a2e992be3f84b0b127d48abadb20.tar.gz
cpython-5be21b7a5a43a2e992be3f84b0b127d48abadb20.tar.bz2
Update OrderedDict implementation to match that in Py2.7.
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 1126d4a..0ad7ebd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,9 @@ Extensions
Library
-------
+- Update collections.OrderedDict to match the implementation in Py2.7
+ (based on lists instead of weakly referenced Link objects).
+
- Issue #8397: Raise an error when attempting to mix iteration and regular
reads on a BZ2File object, rather than returning incorrect results.