Use METH_VARARGS rather than METH_OLDARGS implicitly (args are ignored)
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index a596721..474a97c 100644
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -878,7 +878,7 @@
 	return NULL;
 }
 
-static PyMethodDef bozo_ml = {"__getstate__", bozo_func};
+static PyMethodDef bozo_ml = {"__getstate__", bozo_func, METH_VARARGS};
 
 static PyObject *bozo_obj = NULL;