]> granicus.if.org Git - python/commitdiff
Added PyArg_ParseTupleAndKeywords() prototype.
authorGuido van Rossum <guido@python.org>
Fri, 14 Feb 1997 16:36:35 +0000 (16:36 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 14 Feb 1997 16:36:35 +0000 (16:36 +0000)
Include/modsupport.h

index 206cbc726575ee95406e3589508a12e54fb9e508..0f6f06cc3218e402b4e297b439df6471be2ac765 100644 (file)
@@ -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