summaryrefslogtreecommitdiffstats
path: root/Modules/_sre.c
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-25 16:50:03 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-25 16:50:03 (GMT)
commitc08ded9e4a3073e6f6315d0fa462debdb6d28304 (patch)
tree82d9fcbb6802c6c64de022f6dd9307a2dab17852 /Modules/_sre.c
parent3b65a9eeed7d960dd0e41ddc8773a2e0daf5ebf8 (diff)
downloadcpython-c08ded9e4a3073e6f6315d0fa462debdb6d28304.zip
cpython-c08ded9e4a3073e6f6315d0fa462debdb6d28304.tar.gz
cpython-c08ded9e4a3073e6f6315d0fa462debdb6d28304.tar.bz2
rename MathcObject to match object in doctrings for re module (#16760)
Diffstat (limited to 'Modules/_sre.c')
-rw-r--r--Modules/_sre.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_sre.c b/Modules/_sre.c
index 16e0303..8f47688 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\