[issue29083] Readd PyArg_VaParse to the stable API

2017-03-31 Thread Donald Stufft
Changes by Donald Stufft : -- pull_requests: +1014 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue29083] Readd PyArg_VaParse to the stable API

2017-01-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue29083] Readd PyArg_VaParse to the stable API

2017-01-24 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5cdf383ef35c by Serhiy Storchaka in branch '3.5': Issue #29083: Fixed the declaration of some public API functions. https://hg.python.org/cpython/rev/5cdf383ef35c New changeset 8eae65136000 by Serhiy Storchaka in branch '3.6': Issue #29083: Fixed th

[issue29083] Readd PyArg_VaParse to the stable API

2017-01-22 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: There are also issues with PyArg_ValidateKeywordArguments(), PyArg_UnpackTuple() and Py_BuildValue(). Their declarations are not available if define PY_SSIZE_T_CLEAN and Py_LIMITED_API < 3.3. But they were available in Python 3.2. Proposed patch fixes these

[issue29083] Readd PyArg_VaParse to the stable API

2016-12-27 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Seems PyArg_VaParse() and PyArg_VaParseTupleAndKeywords() were excluded from the stable API by the mistake in fixing issue11626. These functions was in the stable API before 3.3, and the documentation doesn't mention that they are not in the stable API. I