summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorZackery Spytz <zspytz@gmail.com>2018-10-06 06:44:25 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2018-10-06 06:44:25 (GMT)
commitae62f015240c9162773341a9922794e6b960779d (patch)
tree24bfc29c50a3f0cdf9f98b14a58c29f6d19b5c43 /Misc/NEWS.d
parentcd45385ffad8910293e5659cfe7ab036e70613b7 (diff)
downloadcpython-ae62f015240c9162773341a9922794e6b960779d.zip
cpython-ae62f015240c9162773341a9922794e6b960779d.tar.gz
cpython-ae62f015240c9162773341a9922794e6b960779d.tar.bz2
bpo-34910: Ensure that PyObject_Print() always returns -1 on error. (GH-9733)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/C API/2018-10-05-17-06-49.bpo-34910.tSFrls.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2018-10-05-17-06-49.bpo-34910.tSFrls.rst b/Misc/NEWS.d/next/C API/2018-10-05-17-06-49.bpo-34910.tSFrls.rst
new file mode 100644
index 0000000..eff4755
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2018-10-05-17-06-49.bpo-34910.tSFrls.rst
@@ -0,0 +1,2 @@
+Ensure that :c:func:`PyObject_Print` always returns ``-1`` on error. Patch
+by Zackery Spytz.