diff options
author | Raymond Hettinger <python@rcn.com> | 2010-08-01 22:10:57 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-08-01 22:10:57 (GMT) |
commit | 5be21b7a5a43a2e992be3f84b0b127d48abadb20 (patch) | |
tree | 3c25c28d4548cf03692484dd1904de443bc01afe /Misc | |
parent | da6401dab82928adc4e31eef15ca884c694ac161 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |