summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2020-01-23 14:07:05 (GMT)
committerGitHub <noreply@github.com>2020-01-23 14:07:05 (GMT)
commit79f89e6e5a659846d1068e8b1bd8e491ccdef861 (patch)
tree41fe7cc643fe8134ca35430345c0ee76991f89b6 /Misc
parent13bc13960cc83dbd1cb5701d9a59ac9b9144b205 (diff)
downloadcpython-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.rst2
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.