summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-01-24 19:39:42 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-01-24 19:39:42 (GMT)
commit675f2f8f903b83934e0b0cc0d62f12cee25270d2 (patch)
tree373ede49029105c7e07fef007ec24fff4a462ef2 /Misc
parent067cbd02bf2d9dba35fb73edc57afecc759411fd (diff)
parent3831b0a0660621209ee3820e7a2752e69273aa4b (diff)
downloadcpython-675f2f8f903b83934e0b0cc0d62f12cee25270d2.zip
cpython-675f2f8f903b83934e0b0cc0d62f12cee25270d2.tar.gz
cpython-675f2f8f903b83934e0b0cc0d62f12cee25270d2.tar.bz2
Issue #29083: Fixed the declaration of some public API functions.
PyArg_VaParse() and PyArg_VaParseTupleAndKeywords() were not available in limited API. PyArg_ValidateKeywordArguments(), PyArg_UnpackTuple() and Py_BuildValue() were not available in limited API of version < 3.3 when PY_SSIZE_T_CLEAN is defined.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6ce2e3d..34d4565 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -623,6 +623,12 @@ Windows
C API
-----
+- Issue #29083: Fixed the declaration of some public API functions.
+ PyArg_VaParse() and PyArg_VaParseTupleAndKeywords() were not available in
+ limited API. PyArg_ValidateKeywordArguments(), PyArg_UnpackTuple() and
+ Py_BuildValue() were not available in limited API of version < 3.3 when
+ PY_SSIZE_T_CLEAN is defined.
+
- Issue #28769: The result of PyUnicode_AsUTF8AndSize() and PyUnicode_AsUTF8()
is now of type "const char *" rather of "char *".