summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-25 16:49:08 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-25 16:49:08 (GMT)
commit41dc9f3cd15e5184700e2d0fc67b9fef9241c7df (patch)
tree6a2ab75fb5e1e8b61734197a60c31f8043997060 /Modules
parent1bdb638ce333e673df8f3338e10f1d095b47307c (diff)
parent0b64c1415ea46b2ac7464396d5603fe5cb278870 (diff)
downloadcpython-41dc9f3cd15e5184700e2d0fc67b9fef9241c7df.zip
cpython-41dc9f3cd15e5184700e2d0fc67b9fef9241c7df.tar.gz
cpython-41dc9f3cd15e5184700e2d0fc67b9fef9241c7df.tar.bz2
rename MathcObject to match object in doctrings for re module (#16760)
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_sre.c2
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\