Re: [Python-Dev] Wrong keyword parameter name in regex pattern methods

2014-01-23 Thread Terry Reedy
On 1/23/2014 12:22 PM, Serhiy Storchaka wrote: Currently there is a mismatch between documented parameter names in some methods of regex pattern object. match(), search(), and fullmatch() (the last was added in 3.4) document first arguments as "string": match(string[, pos[, endpos]]) search(str

[Python-Dev] Wrong keyword parameter name in regex pattern methods

2014-01-23 Thread Serhiy Storchaka
Currently there is a mismatch between documented parameter names in some methods of regex pattern object. match(), search(), and fullmatch() (the last was added in 3.4) document first arguments as "string": match(string[, pos[, endpos]]) search(string[, pos[, endpos]]) fullmatch(string[, pos[,