summaryrefslogtreecommitdiffstats
path: root/Python/getargs.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/getargs.c')
-rw-r--r--Python/getargs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/getargs.c b/Python/getargs.c
index 2af9d88..e14a07b 100644
--- a/Python/getargs.c
+++ b/Python/getargs.c
@@ -1662,9 +1662,9 @@ err:
int
-PyArg_UnpackTuple(PyObject *args, const char *name, int min, int max, ...)
+PyArg_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t max, ...)
{
- int i, l;
+ Py_ssize_t i, l;
PyObject **o;
va_list vargs;