changes for keyword args to built-in functions and classes
diff --git a/Objects/methodobject.c b/Objects/methodobject.c
index d9daf23..1444924 100644
--- a/Objects/methodobject.c
+++ b/Objects/methodobject.c
@@ -71,14 +71,14 @@
 }
 
 int
-getvarargs(op)
+getflags(op)
 	object *op;
 {
 	if (!is_methodobject(op)) {
 		err_badcall();
 		return -1;
 	}
-	return ((methodobject *)op) -> m_ml -> ml_flags & METH_VARARGS;
+	return ((methodobject *)op) -> m_ml -> ml_flags;
 }
 
 /* Methods (the standard built-in methods, that is) */