diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-01-17 23:15:58 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-01-17 23:15:58 (GMT) |
commit | 43b936d08c51726205123ae1af5c5f8b5d3b6fcb (patch) | |
tree | 1c3e3fd7ec72d71f92f1f0480291c5efc7f19eaf /Modules/bsddbmodule.c | |
parent | c0e1671c71dfcf25c8584b06a2e9584a8806a325 (diff) | |
download | cpython-43b936d08c51726205123ae1af5c5f8b5d3b6fcb.zip cpython-43b936d08c51726205123ae1af5c5f8b5d3b6fcb.tar.gz cpython-43b936d08c51726205123ae1af5c5f8b5d3b6fcb.tar.bz2 |
Patch #477750: Use METH_ constants in Modules.
Diffstat (limited to 'Modules/bsddbmodule.c')
-rw-r--r-- | Modules/bsddbmodule.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/Modules/bsddbmodule.c b/Modules/bsddbmodule.c index d51f3b4..85dfa83 100644 --- a/Modules/bsddbmodule.c +++ b/Modules/bsddbmodule.c @@ -652,15 +652,15 @@ bsddb_sync(bsddbobject *dp, PyObject *args) return PyInt_FromLong(status = 0); } static PyMethodDef bsddb_methods[] = { - {"close", (PyCFunction)bsddb_close}, - {"keys", (PyCFunction)bsddb_keys}, - {"has_key", (PyCFunction)bsddb_has_key}, - {"set_location", (PyCFunction)bsddb_set_location}, - {"next", (PyCFunction)bsddb_next}, - {"previous", (PyCFunction)bsddb_previous}, - {"first", (PyCFunction)bsddb_first}, - {"last", (PyCFunction)bsddb_last}, - {"sync", (PyCFunction)bsddb_sync}, + {"close", (PyCFunction)bsddb_close, METH_OLDARGS}, + {"keys", (PyCFunction)bsddb_keys, METH_OLDARGS}, + {"has_key", (PyCFunction)bsddb_has_key, METH_OLDARGS}, + {"set_location", (PyCFunction)bsddb_set_location, METH_OLDARGS}, + {"next", (PyCFunction)bsddb_next, METH_OLDARGS}, + {"previous", (PyCFunction)bsddb_previous, METH_OLDARGS}, + {"first", (PyCFunction)bsddb_first, METH_OLDARGS}, + {"last", (PyCFunction)bsddb_last, METH_OLDARGS}, + {"sync", (PyCFunction)bsddb_sync, METH_OLDARGS}, {NULL, NULL} /* sentinel */ }; @@ -849,9 +849,9 @@ bsdrnopen(PyObject *self, PyObject *args) } static PyMethodDef bsddbmodule_methods[] = { - {"hashopen", (PyCFunction)bsdhashopen, 1}, - {"btopen", (PyCFunction)bsdbtopen, 1}, - {"rnopen", (PyCFunction)bsdrnopen, 1}, + {"hashopen", (PyCFunction)bsdhashopen, METH_VARARGS}, + {"btopen", (PyCFunction)bsdbtopen, METH_VARARGS}, + {"rnopen", (PyCFunction)bsdrnopen, METH_VARARGS}, {0, 0}, }; |