diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2020-01-23 14:07:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-23 14:07:05 (GMT) |
commit | 79f89e6e5a659846d1068e8b1bd8e491ccdef861 (patch) | |
tree | 41fe7cc643fe8134ca35430345c0ee76991f89b6 /Misc | |
parent | 13bc13960cc83dbd1cb5701d9a59ac9b9144b205 (diff) | |
download | cpython-79f89e6e5a659846d1068e8b1bd8e491ccdef861.zip cpython-79f89e6e5a659846d1068e8b1bd8e491ccdef861.tar.gz cpython-79f89e6e5a659846d1068e8b1bd8e491ccdef861.tar.bz2 |
bpo-39421: Fix posible crash in heapq with custom comparison operators (GH-18118)
* bpo-39421: Fix posible crash in heapq with custom comparison operators
* fixup! bpo-39421: Fix posible crash in heapq with custom comparison operators
* fixup! fixup! bpo-39421: Fix posible crash in heapq with custom comparison operators
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-01-22-15-53-37.bpo-39421.O3nG7u.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-01-22-15-53-37.bpo-39421.O3nG7u.rst b/Misc/NEWS.d/next/Core and Builtins/2020-01-22-15-53-37.bpo-39421.O3nG7u.rst new file mode 100644 index 0000000..bae0081 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-01-22-15-53-37.bpo-39421.O3nG7u.rst @@ -0,0 +1,2 @@ +Fix possible crashes when operating with the functions in the :mod:`heapq` +module and custom comparison operators. |