summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2000-08-03 02:28:54 +0000
committerAndrew M. Kuchling <amk@amk.ca>2000-08-03 02:28:54 +0000
commit522b2231dd64cc58cdab38b4ee4ed18265244c2a (patch)
tree134115f1e7c7f2df04f03e475a35285ac4402132
parenta803b0471bb382215c2a80b9acca9bea327f426b (diff)
downloadcpython-522b2231dd64cc58cdab38b4ee4ed18265244c2a.tar.gz
Added #define for oldest version of argument calling
-rw-r--r--Include/methodobject.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/methodobject.h b/Include/methodobject.h
index bb9d964226..ee0cb7eb43 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