diff options
author | Dong-hee Na <donghee.na92@gmail.com> | 2019-10-19 20:01:08 (GMT) |
---|---|---|
committer | Pablo Galindo <Pablogsal@gmail.com> | 2019-10-19 20:01:08 (GMT) |
commit | 24dc2f8c56697f9ee51a4887cf0814b6600c1815 (patch) | |
tree | f5f820dcf20dca38f75b20ddb2ece7a2eace8e4d /Misc | |
parent | 88eeda6311a8e3bf57136da5f73c70bc91ad79f3 (diff) | |
download | cpython-24dc2f8c56697f9ee51a4887cf0814b6600c1815.zip cpython-24dc2f8c56697f9ee51a4887cf0814b6600c1815.tar.gz cpython-24dc2f8c56697f9ee51a4887cf0814b6600c1815.tar.bz2 |
bpo-38525: Fix a segmentation fault when using reverse iterators of empty dict (GH-16846)
The reverse iterator for empty dictionaries was not handling correctly shared-key dictionaries.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2019-10-20-00-36-18.bpo-38525.Vty1cA.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-10-20-00-36-18.bpo-38525.Vty1cA.rst b/Misc/NEWS.d/next/Core and Builtins/2019-10-20-00-36-18.bpo-38525.Vty1cA.rst new file mode 100644 index 0000000..c74d143 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2019-10-20-00-36-18.bpo-38525.Vty1cA.rst @@ -0,0 +1,2 @@ +Fix a segmentation fault when using reverse iterators of empty ``dict`` objects. +Patch by Dong-hee Na and Inada Naoki. |