summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-04-19 17:05:03 (GMT)
committerRaymond Hettinger <python@rcn.com>2011-04-19 17:05:03 (GMT)
commitd08a2c2576457b7d0229a00b4977044a38ad0d68 (patch)
tree2b9cd896eecc872a675abee46ef4158fedf39a72 /Misc
parent2876a8c272ec9fd7ddd9fec62676bc61ba947747 (diff)
downloadcpython-d08a2c2576457b7d0229a00b4977044a38ad0d68.zip
cpython-d08a2c2576457b7d0229a00b4977044a38ad0d68.tar.gz
cpython-d08a2c2576457b7d0229a00b4977044a38ad0d68.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 c424e1e..7e95d80 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -58,6 +58,9 @@ Library
- Issue #11467: Fix urlparse behavior when handling urls which contains scheme
specific part only digits. Patch by Santoso Wijaya.
+- Issue #11875: collections.OrderedDict's __reduce__ was temporarily
+ mutating the object instead of just working on a copy.
+
- collections.Counter().copy() now works correctly for subclasses.
- Issue #11474: Fix the bug with url2pathname() handling of '/C|/' on Windows.