diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-10-14 16:22:44 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-10-14 16:22:44 (GMT) |
commit | dbb98c1443fa312964cda8b851c7bca9323588de (patch) | |
tree | a2b2a3a6634bb61b805867446f31cad61ecb4b3f /Misc | |
parent | 83ff8a68324dfe54af8baf7e67f81b2db567ae7a (diff) | |
parent | 992ec46acc1267729da141f683f2594f00ba9f57 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |