Patch #477750: Use METH_ constants in Modules.
diff --git a/Modules/fpetestmodule.c b/Modules/fpetestmodule.c
index 31c2f22..565d0b7 100644
--- a/Modules/fpetestmodule.c
+++ b/Modules/fpetestmodule.c
@@ -54,7 +54,7 @@
 static void printerr(double);
 
 static PyMethodDef fpetest_methods[] = {
-    {"test",		 (PyCFunction) test,		 1},
+    {"test",		 (PyCFunction) test,		 METH_VARARGS},
     {0,0}
 };