diff options
Diffstat (limited to 'Modules/almodule.c')
-rw-r--r-- | Modules/almodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/almodule.c b/Modules/almodule.c index 6621b9c..9e26081 100644 --- a/Modules/almodule.c +++ b/Modules/almodule.c @@ -1203,7 +1203,7 @@ alp_getstatus(alpobject *self, PyObject *args) long length; int i; - if (!PyArg_Parse(args, "O!", &PyList_Type, &list)) + if (!PyArg_ParseTuple(args, "O!", &PyList_Type, &list)) return NULL; length = PyList_Size(list); PVbuffer = PyMem_NEW(long, length); |