summaryrefslogtreecommitdiffstats
path: root/Include/modsupport.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-02-14 16:36:35 (GMT)
committerGuido van Rossum <guido@python.org>1997-02-14 16:36:35 (GMT)
commit36280a77720e08074835256ed3dd4e3d5753a1a3 (patch)
tree8fbc60f1e3eca856eea2cc3c7f39a01cf4688601 /Include/modsupport.h
parentfb76f1af9b345ce41523deea4bb2989d06eb5cdc (diff)
downloadcpython-36280a77720e08074835256ed3dd4e3d5753a1a3.zip
cpython-36280a77720e08074835256ed3dd4e3d5753a1a3.tar.gz
cpython-36280a77720e08074835256ed3dd4e3d5753a1a3.tar.bz2
Added PyArg_ParseTupleAndKeywords() prototype.
Diffstat (limited to 'Include/modsupport.h')
-rw-r--r--Include/modsupport.h2
1 files changed, 2 insertions, 0 deletions
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