Correct argument parsing for alp_getstatus, which is METH_VARARGS.
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 @@
 	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);