summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2002-03-31 14:37:44 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2002-03-31 14:37:44 (GMT)
commit031829d3ef22fcc0f5a6d325fee075ee11186599 (patch)
tree1339a83e8d8b8fd86ca803ebbb63406465ae26b6 /Python
parent93cf79fde418725f2c2334eb062f9999da9e806d (diff)
downloadcpython-031829d3ef22fcc0f5a6d325fee075ee11186599.zip
cpython-031829d3ef22fcc0f5a6d325fee075ee11186599.tar.gz
cpython-031829d3ef22fcc0f5a6d325fee075ee11186599.tar.bz2
Use symbolic METH_VARARGS instead of 1 for ml_flags
Diffstat (limited to 'Python')
-rw-r--r--Python/import.c32
-rw-r--r--Python/marshal.c8
2 files changed, 20 insertions, 20 deletions
diff --git a/Python/import.c b/Python/import.c
index 50bd729..3055f5b 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -2505,27 +2505,27 @@ On platforms without threads, return 0.\
";
static PyMethodDef imp_methods[] = {
- {"find_module", imp_find_module, 1, doc_find_module},
- {"get_magic", imp_get_magic, 1, doc_get_magic},
- {"get_suffixes", imp_get_suffixes, 1, doc_get_suffixes},
- {"load_module", imp_load_module, 1, doc_load_module},
- {"new_module", imp_new_module, 1, doc_new_module},
- {"lock_held", imp_lock_held, 1, doc_lock_held},
+ {"find_module", imp_find_module, METH_VARARGS, doc_find_module},
+ {"get_magic", imp_get_magic, METH_VARARGS, doc_get_magic},
+ {"get_suffixes", imp_get_suffixes, METH_VARARGS, doc_get_suffixes},
+ {"load_module", imp_load_module, METH_VARARGS, doc_load_module},
+ {"new_module", imp_new_module, METH_VARARGS, doc_new_module},
+ {"lock_held", imp_lock_held, METH_VARARGS, doc_lock_held},
/* The rest are obsolete */
- {"get_frozen_object", imp_get_frozen_object, 1},
- {"init_builtin", imp_init_builtin, 1},
- {"init_frozen", imp_init_frozen, 1},
- {"is_builtin", imp_is_builtin, 1},
- {"is_frozen", imp_is_frozen, 1},
- {"load_compiled", imp_load_compiled, 1},
+ {"get_frozen_object", imp_get_frozen_object, METH_VARARGS},
+ {"init_builtin", imp_init_builtin, METH_VARARGS},
+ {"init_frozen", imp_init_frozen, METH_VARARGS},
+ {"is_builtin", imp_is_builtin, METH_VARARGS},
+ {"is_frozen", imp_is_frozen, METH_VARARGS},
+ {"load_compiled", imp_load_compiled, METH_VARARGS},
#ifdef HAVE_DYNAMIC_LOADING
- {"load_dynamic", imp_load_dynamic, 1},
+ {"load_dynamic", imp_load_dynamic, METH_VARARGS},
#endif
- {"load_package", imp_load_package, 1},
+ {"load_package", imp_load_package, METH_VARARGS},
#ifdef macintosh
- {"load_resource", imp_load_resource, 1},
+ {"load_resource", imp_load_resource, METH_VARARGS},
#endif
- {"load_source", imp_load_source, 1},
+ {"load_source", imp_load_source, METH_VARARGS},
{NULL, NULL} /* sentinel */
};
diff --git a/Python/marshal.c b/Python/marshal.c
index 0d21e84..3cdaecd 100644
--- a/Python/marshal.c
+++ b/Python/marshal.c
@@ -852,10 +852,10 @@ marshal_loads(PyObject *self, PyObject *args)
}
static PyMethodDef marshal_methods[] = {
- {"dump", marshal_dump, 1},
- {"load", marshal_load, 1},
- {"dumps", marshal_dumps, 1},
- {"loads", marshal_loads, 1},
+ {"dump", marshal_dump, METH_VARARGS},
+ {"load", marshal_load, METH_VARARGS},
+ {"dumps", marshal_dumps, METH_VARARGS},
+ {"loads", marshal_loads, METH_VARARGS},
{NULL, NULL} /* sentinel */
};