diff options
author | Raymond Hettinger <python@rcn.com> | 2011-04-19 18:10:43 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-04-19 18:10:43 (GMT) |
commit | 1cc986e4a7ef3d1d535f045069710f11f67d5a22 (patch) | |
tree | 637df436d6e285068e50f3c9303ed47ac361e696 /Misc | |
parent | f97255fd7c1d2b70dfe8032a54ce3ce0daf4cea3 (diff) | |
parent | 35b873a7b2b25bf90099b1d449a35d6ff695d02b (diff) | |
download | cpython-1cc986e4a7ef3d1d535f045069710f11f67d5a22.zip cpython-1cc986e4a7ef3d1d535f045069710f11f67d5a22.tar.gz cpython-1cc986e4a7ef3d1d535f045069710f11f67d5a22.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
@@ -68,6 +68,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. |