summaryrefslogtreecommitdiffstats
path: root/Modules/pcremodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/pcremodule.c')
-rw-r--r--Modules/pcremodule.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/pcremodule.c b/Modules/pcremodule.c
index d08d4ea..6c05766 100644
--- a/Modules/pcremodule.c
+++ b/Modules/pcremodule.c
@@ -114,7 +114,7 @@ PyPcre_exec(PcreObject *self, PyObject *args)
}
static PyMethodDef Pcre_methods[] = {
- {"match", (PyCFunction)PyPcre_exec, 1},
+ {"match", (PyCFunction)PyPcre_exec, METH_VARARGS},
{NULL, NULL} /* sentinel */
};
@@ -582,8 +582,8 @@ PyPcre_expand(PyObject *self, PyObject *args)
/* List of functions defined in the module */
static PyMethodDef pcre_methods[] = {
- {"pcre_compile", PyPcre_compile, 1},
- {"pcre_expand", PyPcre_expand, 1},
+ {"pcre_compile", PyPcre_compile, METH_VARARGS},
+ {"pcre_expand", PyPcre_expand, METH_VARARGS},
{NULL, NULL} /* sentinel */
};