summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-10-14 16:22:44 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-10-14 16:22:44 (GMT)
commitdbb98c1443fa312964cda8b851c7bca9323588de (patch)
treea2b2a3a6634bb61b805867446f31cad61ecb4b3f /Misc
parent83ff8a68324dfe54af8baf7e67f81b2db567ae7a (diff)
parent992ec46acc1267729da141f683f2594f00ba9f57 (diff)
downloadcpython-dbb98c1443fa312964cda8b851c7bca9323588de.zip
cpython-dbb98c1443fa312964cda8b851c7bca9323588de.tar.gz
cpython-dbb98c1443fa312964cda8b851c7bca9323588de.tar.bz2
Issue #25406: Fixed a bug in C implementation of OrderedDict.move_to_end()
that caused segmentation fault or hang in iterating after moving several items to the start of ordered dict.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 312cde0..dd6458d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -63,6 +63,10 @@ Core and Builtins
Library
-------
+- Issue #25406: Fixed a bug in C implementation of OrderedDict.move_to_end()
+ that caused segmentation fault or hang in iterating after moving several
+ items to the start of ordered dict.
+
- Issue #25382: pickletools.dis() now outputs implicit memo index for the
MEMOIZE opcode.