summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-09-10 03:45:06 (GMT)
committerBenjamin Peterson <benjamin@python.org>2016-09-10 03:45:06 (GMT)
commit819a46f33aec142224b06867754cd0b2a792045a (patch)
treee89c743160b8cc90897733450693d52b341e48ac /Python
parent990397ef1e69f531e1efaaac63211256f0eeb46c (diff)
downloadcpython-819a46f33aec142224b06867754cd0b2a792045a.zip
cpython-819a46f33aec142224b06867754cd0b2a792045a.tar.gz
cpython-819a46f33aec142224b06867754cd0b2a792045a.tar.bz2
fix export of size_t parse stack function
Diffstat (limited to 'Python')
-rw-r--r--Python/getargs.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Python/getargs.c b/Python/getargs.c
index 017098e..87a5d26 100644
--- a/Python/getargs.c
+++ b/Python/getargs.c
@@ -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 **, ...);