From f2fc934a77fef3ef368f4a41e05e67b846821a12 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 1 Sep 2007 13:59:50 +0000 Subject: Get rid of METH_OLDARGS. --- Include/methodobject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Include/methodobject.h') diff --git a/Include/methodobject.h b/Include/methodobject.h index 7b23fe9941..0068120e74 100644 --- a/Include/methodobject.h +++ b/Include/methodobject.h @@ -50,7 +50,7 @@ PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *, PyObject *); /* Flag passed to newmethodobject */ -#define METH_OLDARGS 0x0000 +/* #define METH_OLDARGS 0x0000 -- unsupported now */ #define METH_VARARGS 0x0001 #define METH_KEYWORDS 0x0002 /* METH_NOARGS and METH_O must not be combined with the flags above. */ -- cgit v1.2.1