summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-06-15 11:09:43 +0300
committerGitHub <noreply@github.com>2018-06-15 11:09:43 +0300
commitceeef10cdbc08561f9954e13bbed1cb2299a8c72 (patch)
tree8b4678e015343dc2f052c672d3a4be00ef313e0f /Misc
parent08f127a3cad8ce4eb281d30d9488c91b0fd7cfed (diff)
downloadcpython-git-ceeef10cdbc08561f9954e13bbed1cb2299a8c72.tar.gz
bpo-33818: PyExceptionClass_Name() will now return "const char *". (GH-7581)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/C API/2018-06-10-09-42-31.bpo-33818.50nlf3.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2018-06-10-09-42-31.bpo-33818.50nlf3.rst b/Misc/NEWS.d/next/C API/2018-06-10-09-42-31.bpo-33818.50nlf3.rst
new file mode 100644
index 0000000000..0f30a6e380
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2018-06-10-09-42-31.bpo-33818.50nlf3.rst
@@ -0,0 +1,2 @@
+:c:func:`PyExceptionClass_Name` will now return ``const char *`` instead of
+``char *``.