From: Guido van Rossum Date: Fri, 14 Feb 1997 16:36:35 +0000 (+0000) Subject: Added PyArg_ParseTupleAndKeywords() prototype. X-Git-Tag: v1.5a1~373 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=36280a77720e08074835256ed3dd4e3d5753a1a3;p=python Added PyArg_ParseTupleAndKeywords() prototype. --- diff --git a/Include/modsupport.h b/Include/modsupport.h index 206cbc7265..0f6f06cc32 100644 --- a/Include/modsupport.h +++ b/Include/modsupport.h @@ -43,6 +43,8 @@ PERFORMANCE OF THIS SOFTWARE. extern int PyArg_Parse Py_PROTO((PyObject *, char *, ...)); extern int PyArg_ParseTuple Py_PROTO((PyObject *, char *, ...)); +extern int PyArg_ParseTupleAndKeywords Py_PROTO((PyObject *, PyObject *, + char *, char **, ...)); extern PyObject *Py_BuildValue Py_PROTO((char *, ...)); #else