Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66eed24 commit 888aa26Copy full SHA for 888aa26
1 file changed
Modules/pcremodule.c
@@ -74,7 +74,8 @@ PyPcre_exec(PcreObject *self, PyObject *args)
74
int offsets[100*2];
75
PyObject *list;
76
77
- if (!PyArg_ParseTuple(args, "t#|iiii:match", &string, &stringlen, &pos, &endpos, &options))
+ if (!PyArg_ParseTuple(args, "t#|iii:match", &string, &stringlen,
78
+ &pos, &endpos, &options))
79
return NULL;
80
if (endpos == -1) {endpos = stringlen;}
81
count = pcre_exec(self->regex, self->regex_extra,
0 commit comments