diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-01-24 19:27:12 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-01-24 19:27:12 (GMT) |
commit | 07a1f65a9362810e186059ef96e5b9cb19cb9e44 (patch) | |
tree | ad2addd5aafb9432dbf0987ffe9ece5b03b6179d /Misc | |
parent | 713640c4c95df999957b5366fb8cd7f443906858 (diff) | |
download | cpython-07a1f65a9362810e186059ef96e5b9cb19cb9e44.zip cpython-07a1f65a9362810e186059ef96e5b9cb19cb9e44.tar.gz cpython-07a1f65a9362810e186059ef96e5b9cb19cb9e44.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/NEWS | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -37,6 +37,15 @@ Library leading dots could match related hostnames again (e.g. .b.c matches a.b.c). Patch by Milan Oberkirch. +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. + What's New in Python 3.5.3? =========================== |