diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-25 16:49:24 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-25 16:49:24 (GMT) |
commit | 6d469ebbc8577107203283647caf2bbc50a68497 (patch) | |
tree | 9aad0b0d04ef6907c935a0780b7c0e6b4596cd69 /Modules/_sre.c | |
parent | e34ccb686127cd922014b3921af7ce60c174249b (diff) | |
parent | 41dc9f3cd15e5184700e2d0fc67b9fef9241c7df (diff) | |
download | cpython-6d469ebbc8577107203283647caf2bbc50a68497.zip cpython-6d469ebbc8577107203283647caf2bbc50a68497.tar.gz cpython-6d469ebbc8577107203283647caf2bbc50a68497.tar.bz2 |
rename MathcObject to match object in doctrings for re module (#16760)
Diffstat (limited to 'Modules/_sre.c')
-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 46bbdb6..8349e1a 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\ |