diff options
author | Georg Brandl <georg@python.org> | 2007-09-01 13:59:50 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-09-01 13:59:50 (GMT) |
commit | f2fc934a77fef3ef368f4a41e05e67b846821a12 (patch) | |
tree | ffe2a7e765f9b462071f416ab4cc0a92c0363f6b /Include/methodobject.h | |
parent | 55ac8f0f26efdbbcb5cc197f9369d23d50bee908 (diff) | |
download | cpython-f2fc934a77fef3ef368f4a41e05e67b846821a12.zip cpython-f2fc934a77fef3ef368f4a41e05e67b846821a12.tar.gz cpython-f2fc934a77fef3ef368f4a41e05e67b846821a12.tar.bz2 |
Get rid of METH_OLDARGS.
Diffstat (limited to 'Include/methodobject.h')
-rw-r--r-- | Include/methodobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/methodobject.h b/Include/methodobject.h index 7b23fe9..0068120 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. */ |