Added PyArg_ParseTupleAndKeywords() prototype.

This commit is contained in:
Guido van Rossum 1997-02-14 16:36:35 +00:00
parent fb76f1af9b
commit 36280a7772
1 changed files with 2 additions and 0 deletions

View 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