summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSergey Fedoseev <fedoseev.sergey@gmail.com>2018-10-20 05:20:39 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2018-10-20 05:20:39 (GMT)
commita5259fb05d03f4871837c14fed704541a20896c0 (patch)
treee8d8b3310f9f3df3c316f683c8fad3c547fa2ce2 /Misc
parent8c9fd9c91ba748df68a11e3bf216fa158314c9b5 (diff)
downloadcpython-a5259fb05d03f4871837c14fed704541a20896c0.zip
cpython-a5259fb05d03f4871837c14fed704541a20896c0.tar.gz
cpython-a5259fb05d03f4871837c14fed704541a20896c0.tar.bz2
bpo-34574: Prevent OrderedDict iterators from exhaustion during pickling. (GH-9051)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-09-04-09-32-54.bpo-34574.X4RwYI.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-09-04-09-32-54.bpo-34574.X4RwYI.rst b/Misc/NEWS.d/next/Library/2018-09-04-09-32-54.bpo-34574.X4RwYI.rst
new file mode 100644
index 0000000..de718ad
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-09-04-09-32-54.bpo-34574.X4RwYI.rst
@@ -0,0 +1,2 @@
+OrderedDict iterators are not exhausted during pickling anymore. Patch by
+Sergey Fedoseev.