diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-03-01 04:06:10 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-03-01 04:06:10 (GMT) |
commit | 762467475d944f67ac20bf23c6c5144a6e39feae (patch) | |
tree | c1e48eb4483b1722a40889b69851f9a202947694 /Include/modsupport.h | |
parent | 66485ae571e8c366764753786ab7487fe5eac132 (diff) | |
download | cpython-762467475d944f67ac20bf23c6c5144a6e39feae.zip cpython-762467475d944f67ac20bf23c6c5144a6e39feae.tar.gz cpython-762467475d944f67ac20bf23c6c5144a6e39feae.tar.bz2 |
Use Py_ssize_t for PyArg_UnpackTuple arguments.
Diffstat (limited to 'Include/modsupport.h')
-rw-r--r-- | Include/modsupport.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/modsupport.h b/Include/modsupport.h index 63f866e..c356f03 100644 --- a/Include/modsupport.h +++ b/Include/modsupport.h @@ -25,7 +25,7 @@ PyAPI_FUNC(int) PyArg_Parse(PyObject *, const char *, ...); PyAPI_FUNC(int) PyArg_ParseTuple(PyObject *, const char *, ...); PyAPI_FUNC(int) PyArg_ParseTupleAndKeywords(PyObject *, PyObject *, const char *, char **, ...); -PyAPI_FUNC(int) PyArg_UnpackTuple(PyObject *, const char *, int, int, ...); +PyAPI_FUNC(int) PyArg_UnpackTuple(PyObject *, const char *, Py_ssize_t, Py_ssize_t, ...); PyAPI_FUNC(PyObject *) Py_BuildValue(const char *, ...); PyAPI_FUNC(int) _PyArg_NoKeywords(const char *funcname, PyObject *kw); |