Kaydet (Commit) 888aa268 authored tarafından Andrew M. Kuchling's avatar Andrew M. Kuchling

[Bug #433047, reported by Armin Rigo] Remove extra 'i' character in

    PyArg_ParseTuple() call.

(2.1.1 bugfix candidate.)
üst 66eed244
......@@ -74,7 +74,8 @@ PyPcre_exec(PcreObject *self, PyObject *args)
int offsets[100*2];
PyObject *list;
if (!PyArg_ParseTuple(args, "t#|iiii:match", &string, &stringlen, &pos, &endpos, &options))
if (!PyArg_ParseTuple(args, "t#|iii:match", &string, &stringlen,
&pos, &endpos, &options))
return NULL;
if (endpos == -1) {endpos = stringlen;}
count = pcre_exec(self->regex, self->regex_extra,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment