summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-01-22 21:07:07 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-01-22 21:07:07 (GMT)
commit2a404b63d48d73bbaa007d89efb7a01048475acd (patch)
tree66a217f6efa01478ca1741218fb059112675b0f1 /Misc
parentd528791096694307884762eebc8ec6fed279f302 (diff)
downloadcpython-2a404b63d48d73bbaa007d89efb7a01048475acd.zip
cpython-2a404b63d48d73bbaa007d89efb7a01048475acd.tar.gz
cpython-2a404b63d48d73bbaa007d89efb7a01048475acd.tar.bz2
Issue #28769: The result of PyUnicode_AsUTF8AndSize() and PyUnicode_AsUTF8()
is now of type "const char *" rather of "char *".
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index efd8e32..c68ffe8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -614,6 +614,9 @@ Windows
C API
-----
+- Issue #28769: The result of PyUnicode_AsUTF8AndSize() and PyUnicode_AsUTF8()
+ is now of type "const char *" rather of "char *".
+
- Issue #29058: All stable API extensions added after Python 3.2 are now
available only when Py_LIMITED_API is set to the PY_VERSION_HEX value of
the minimum Python version supporting this API.