diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-11 00:04:36 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-11 00:04:36 (GMT) |
commit | 4eef50506431d22c7488adf24feace29fded6d53 (patch) | |
tree | 9c48f0bd55d25dfd6606b86d4d25f38a85493de9 /Python/getargs.c | |
parent | 632d38a04f2482cb08c7ae8ee82d560c2672124b (diff) | |
download | cpython-4eef50506431d22c7488adf24feace29fded6d53.zip cpython-4eef50506431d22c7488adf24feace29fded6d53.tar.gz cpython-4eef50506431d22c7488adf24feace29fded6d53.tar.bz2 |
Backed out changeset 3934e070c9db
Diffstat (limited to 'Python/getargs.c')
-rw-r--r-- | Python/getargs.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Python/getargs.c b/Python/getargs.c index 7339191..87a5d26 100644 --- a/Python/getargs.c +++ b/Python/getargs.c @@ -35,12 +35,11 @@ PyAPI_FUNC(PyObject *) _Py_BuildValue_SizeT(const char *, ...); PyAPI_FUNC(int) _PyArg_VaParse_SizeT(PyObject *, const char *, va_list); PyAPI_FUNC(int) _PyArg_VaParseTupleAndKeywords_SizeT(PyObject *, PyObject *, const char *, char **, va_list); + PyAPI_FUNC(int) _PyArg_ParseTupleAndKeywordsFast_SizeT(PyObject *, PyObject *, struct _PyArg_Parser *, ...); PyAPI_FUNC(int) _PyArg_VaParseTupleAndKeywordsFast_SizeT(PyObject *, PyObject *, struct _PyArg_Parser *, va_list); -PyAPI_FUNC(int) _PyArg_ParseStack_SizeT(PyObject **args, Py_ssize_t nargs, - PyObject *kwnames, struct _PyArg_Parser *parser, ...); #endif #define FLAG_COMPAT 1 |