diff options
author | Raymond Hettinger <python@rcn.com> | 2011-04-19 17:21:27 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-04-19 17:21:27 (GMT) |
commit | 019a97c77cc750d104adcc53ca4b84e29a069317 (patch) | |
tree | 09f877d3da00006cd10c71963f0ee5ec5a6b811d /Misc | |
parent | c15d9e759fbbaf54cc97ab41a067ac637c296781 (diff) | |
download | cpython-019a97c77cc750d104adcc53ca4b84e29a069317.zip cpython-019a97c77cc750d104adcc53ca4b84e29a069317.tar.gz cpython-019a97c77cc750d104adcc53ca4b84e29a069317.tar.bz2 |
Issue 11875: Keep OrderedDict's __reduce__ from temporarily mutating the object.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -62,6 +62,9 @@ Library - Issue #11852: Add missing imports and update tests. +- Issue #11875: collections.OrderedDict's __reduce__ was temporarily + mutating the object instead of just working on a copy. + - Issue #11467: Fix urlparse behavior when handling urls which contains scheme specific part only digits. Patch by Santoso Wijaya. |