summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-04-19 18:10:43 (GMT)
committerRaymond Hettinger <python@rcn.com>2011-04-19 18:10:43 (GMT)
commit1cc986e4a7ef3d1d535f045069710f11f67d5a22 (patch)
tree637df436d6e285068e50f3c9303ed47ac361e696 /Misc
parentf97255fd7c1d2b70dfe8032a54ce3ce0daf4cea3 (diff)
parent35b873a7b2b25bf90099b1d449a35d6ff695d02b (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c1fb164..fe6ba01 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.