From 36280a77720e08074835256ed3dd4e3d5753a1a3 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 14 Feb 1997 16:36:35 +0000 Subject: Added PyArg_ParseTupleAndKeywords() prototype. --- Include/modsupport.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Include/modsupport.h b/Include/modsupport.h index 206cbc7..0f6f06c 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 -- cgit v0.12