diff options
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/regexmodule.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Modules/regexmodule.c b/Modules/regexmodule.c index 9b40ab5..893f4fc 100644 --- a/Modules/regexmodule.c +++ b/Modules/regexmodule.c @@ -555,11 +555,11 @@ regex_set_syntax(self, args) } static struct methodlist regex_global_methods[] = { - {"compile", regex_compile}, - {"symcomp", regex_symcomp}, - {"match", regex_match}, - {"search", regex_search}, - {"set_syntax", regex_set_syntax}, + {"compile", regex_compile, 0}, + {"symcomp", regex_symcomp, 0}, + {"match", regex_match, 0}, + {"search", regex_search, 0}, + {"set_syntax", regex_set_syntax, 0}, {NULL, NULL} /* sentinel */ }; |