diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2000-08-03 02:28:54 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2000-08-03 02:28:54 (GMT) |
commit | 767bf49b6b3d8825cfa5c52c2e8019bd23429fcd (patch) | |
tree | d8a5913ec130f39690c9acd9d55956c584bf4dbe /Include | |
parent | a3eacc472ce00d0579586d41bfd0df99f9bf039d (diff) | |
download | cpython-767bf49b6b3d8825cfa5c52c2e8019bd23429fcd.zip cpython-767bf49b6b3d8825cfa5c52c2e8019bd23429fcd.tar.gz cpython-767bf49b6b3d8825cfa5c52c2e8019bd23429fcd.tar.bz2 |
Added #define for oldest version of argument calling
Diffstat (limited to 'Include')
-rw-r--r-- | Include/methodobject.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/methodobject.h b/Include/methodobject.h index bb9d964..ee0cb7e 100644 --- a/Include/methodobject.h +++ b/Include/methodobject.h @@ -50,6 +50,7 @@ extern DL_IMPORT(PyObject *) Py_FindMethod(PyMethodDef[], PyObject *, char *); extern DL_IMPORT(PyObject *) PyCFunction_New(PyMethodDef *, PyObject *); /* Flag passed to newmethodobject */ +#define METH_OLDARGS 0x0000 #define METH_VARARGS 0x0001 #define METH_KEYWORDS 0x0002 |