[Python-checkins] cpython: fix export of size_t parse stack function

benjamin.peterson python-checkins at python.org
Fri Sep 9 23:45:45 EDT 2016


https://hg.python.org/cpython/rev/3f22cc0ebf16
changeset:   103545:3f22cc0ebf16
user:        Benjamin Peterson <benjamin at python.org>
date:        Fri Sep 09 20:45:06 2016 -0700
summary:
  fix export of size_t parse stack function

files:
  Python/getargs.c |  2 ++
  1 files changed, 2 insertions(+), 0 deletions(-)


diff --git a/Python/getargs.c b/Python/getargs.c
--- a/Python/getargs.c
+++ b/Python/getargs.c
@@ -26,6 +26,8 @@
 #ifdef HAVE_DECLSPEC_DLL
 /* Export functions */
 PyAPI_FUNC(int) _PyArg_Parse_SizeT(PyObject *, const char *, ...);
+PyAPI_FUNC(int) _PyArg_ParseStack_SizeT(PyObject **args, Py_ssize_t nargs, PyObject *kwnames,
+                                        struct _PyArg_Parser *parser, ...);
 PyAPI_FUNC(int) _PyArg_ParseTuple_SizeT(PyObject *, const char *, ...);
 PyAPI_FUNC(int) _PyArg_ParseTupleAndKeywords_SizeT(PyObject *, PyObject *,
                                                   const char *, char **, ...);

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list