]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix export of size_t parse stack function
authorBenjamin Peterson <benjamin@python.org>
Sat, 10 Sep 2016 03:45:06 +0000 (20:45 -0700)
committerBenjamin Peterson <benjamin@python.org>
Sat, 10 Sep 2016 03:45:06 +0000 (20:45 -0700)
Python/getargs.c

index 017098e226489389157a0bb27d817048886800fb..87a5d26a88081298cb0f6e7cbfb5ca7186e6d379 100644 (file)
@@ -26,6 +26,8 @@ int _PyArg_VaParseTupleAndKeywordsFast(PyObject *, PyObject *,
 #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 **, ...);