diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-10-14 16:21:24 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-10-14 16:21:24 (GMT) |
commit | 992ec46acc1267729da141f683f2594f00ba9f57 (patch) | |
tree | e3a6ac322df5d1d565732dd4381845e535073312 /Misc | |
parent | c1e98de7be2f6d1d34df36b37e45f97ed209c847 (diff) | |
download | cpython-992ec46acc1267729da141f683f2594f00ba9f57.zip cpython-992ec46acc1267729da141f683f2594f00ba9f57.tar.gz cpython-992ec46acc1267729da141f683f2594f00ba9f57.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
@@ -45,6 +45,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 #25364: zipfile now works in threads disabled builds. - Issue #25328: smtpd's SMTPChannel now correctly raises a ValueError if both |