summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorZackery Spytz <zspytz@gmail.com>2019-12-30 19:32:58 (GMT)
committerPablo Galindo <Pablogsal@gmail.com>2019-12-30 19:32:58 (GMT)
commitd9e561d23d994e3ed15f4fcbd7ee5c8fe50f190b (patch)
tree34162f9f568287e72843c154831efb35b2384a55 /Misc/NEWS.d
parent09c482fad11c769be38b2449f1056e264b701bb7 (diff)
downloadcpython-d9e561d23d994e3ed15f4fcbd7ee5c8fe50f190b.zip
cpython-d9e561d23d994e3ed15f4fcbd7ee5c8fe50f190b.tar.gz
cpython-d9e561d23d994e3ed15f4fcbd7ee5c8fe50f190b.tar.bz2
bpo-38610: Fix possible crashes in several list methods (GH-17022)
Hold strong references to list elements while calling PyObject_RichCompareBool().
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2019-10-31-14-30-39.bpo-38610.fHdVMS.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-10-31-14-30-39.bpo-38610.fHdVMS.rst b/Misc/NEWS.d/next/Core and Builtins/2019-10-31-14-30-39.bpo-38610.fHdVMS.rst
new file mode 100644
index 0000000..0ee63bb
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2019-10-31-14-30-39.bpo-38610.fHdVMS.rst
@@ -0,0 +1,2 @@
+Fix possible crashes in several list methods by holding strong references to
+list elements when calling :c:func:`PyObject_RichCompareBool`.