summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2020-03-02 06:42:39 (GMT)
committerGitHub <noreply@github.com>2020-03-02 06:42:39 (GMT)
commit28d0bcac8b7e6dbd28311f1283dabb6a4d649fcb (patch)
tree83383bd4da7d3e8353faae7a29d7658691f299ca /Misc/NEWS.d
parent2565edec2c974b2acca03b4cc5025e83f903ddd7 (diff)
downloadcpython-28d0bcac8b7e6dbd28311f1283dabb6a4d649fcb.zip
cpython-28d0bcac8b7e6dbd28311f1283dabb6a4d649fcb.tar.gz
cpython-28d0bcac8b7e6dbd28311f1283dabb6a4d649fcb.tar.bz2
bpo-38913: Fix segfault in Py_BuildValue("(s#O)", ...) if entered with exception raised. (GH-18656)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/C API/2020-02-25-20-10-34.bpo-38913.siF1lS.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2020-02-25-20-10-34.bpo-38913.siF1lS.rst b/Misc/NEWS.d/next/C API/2020-02-25-20-10-34.bpo-38913.siF1lS.rst
new file mode 100644
index 0000000..0e4d121
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2020-02-25-20-10-34.bpo-38913.siF1lS.rst
@@ -0,0 +1,2 @@
+Fixed segfault in ``Py_BuildValue()`` called with a format containing "#"
+and undefined PY_SSIZE_T_CLEAN whwn an exception is set.