summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-01-24 19:34:44 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-01-24 19:34:44 (GMT)
commit3831b0a0660621209ee3820e7a2752e69273aa4b (patch)
treed953fd7751a718300f1e9558ef0c901bf80514c9 /Misc
parent4102d25b7eef868519b4c9b398690313cd36ef66 (diff)
parent07a1f65a9362810e186059ef96e5b9cb19cb9e44 (diff)
downloadcpython-3831b0a0660621209ee3820e7a2752e69273aa4b.zip
cpython-3831b0a0660621209ee3820e7a2752e69273aa4b.tar.gz
cpython-3831b0a0660621209ee3820e7a2752e69273aa4b.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 2b319ec..faab4df 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -143,6 +143,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 #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.