From: Andrew Svetlov Date: Tue, 25 Dec 2012 16:50:03 +0000 (+0200) Subject: rename MathcObject to match object in doctrings for re module (#16760) X-Git-Tag: v2.7.5~109^2~20 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c08ded9e4a3073e6f6315d0fa462debdb6d28304;p=thirdparty%2FPython%2Fcpython.git rename MathcObject to match object in doctrings for re module (#16760) --- diff --git a/Modules/_sre.c b/Modules/_sre.c index 16e0303a2762..8f47688d410d 100644 --- a/Modules/_sre.c +++ b/Modules/_sre.c @@ -2546,7 +2546,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\