diff options
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_sre.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_sre.c b/Modules/_sre.c index ee353bb..de35396 100644 --- a/Modules/_sre.c +++ b/Modules/_sre.c @@ -2533,7 +2533,7 @@ PyDoc_STRVAR(pattern_match_doc, PyDoc_STRVAR(pattern_search_doc, "search(string[, pos[, endpos]]) -> match object or None.\n\ Scan through string looking for a match, and return a corresponding\n\ - MatchObject instance. Return None if no position in the string matches."); + match object instance. Return None if no position in the string matches."); PyDoc_STRVAR(pattern_split_doc, "split(string[, maxsplit = 0]) -> list.\n\ |