Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c7454ff

Browse files
committed
Issue #27810: Fix getargs.c compilation on Windows
1 parent 819a46f commit c7454ff

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Python/getargs.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,12 @@ PyAPI_FUNC(PyObject *) _Py_BuildValue_SizeT(const char *, ...);
3535
PyAPI_FUNC(int) _PyArg_VaParse_SizeT(PyObject *, const char *, va_list);
3636
PyAPI_FUNC(int) _PyArg_VaParseTupleAndKeywords_SizeT(PyObject *, PyObject *,
3737
const char *, char **, va_list);
38-
3938
PyAPI_FUNC(int) _PyArg_ParseTupleAndKeywordsFast_SizeT(PyObject *, PyObject *,
4039
struct _PyArg_Parser *, ...);
4140
PyAPI_FUNC(int) _PyArg_VaParseTupleAndKeywordsFast_SizeT(PyObject *, PyObject *,
4241
struct _PyArg_Parser *, va_list);
42+
PyAPI_FUNC(int) _PyArg_ParseStack_SizeT(PyObject **args, Py_ssize_t nargs,
43+
PyObject *kwnames, struct _PyArg_Parser *parser, ...);
4344
#endif
4445

4546
#define FLAG_COMPAT 1

0 commit comments

Comments
 (0)