summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-12-02 19:02:04 (GMT)
committerChristian Heimes <christian@cheimes.de>2013-12-02 19:02:04 (GMT)
commitb8a3f581580cc6dc7dd9621bbb41c2b85414eaba (patch)
treebb2a3e3e1adc43369f783d932c7189263eb11b5d /Doc/library
parent48aae57996c89a5601534320fdd078da978fb7bb (diff)
parent6de88b3107108d1d6cb8a1939caaad1d9b354db4 (diff)
downloadcpython-b8a3f581580cc6dc7dd9621bbb41c2b85414eaba.zip
cpython-b8a3f581580cc6dc7dd9621bbb41c2b85414eaba.tar.gz
cpython-b8a3f581580cc6dc7dd9621bbb41c2b85414eaba.tar.bz2
merge
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/re.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/re.rst b/Doc/library/re.rst
index fa6a9ce..9dc88528 100644
--- a/Doc/library/re.rst
+++ b/Doc/library/re.rst
@@ -801,7 +801,7 @@ attributes:
>>> pattern.fullmatch("dog") # No match as "o" is not at the start of "dog".
>>> pattern.fullmatch("ogre") # No match as not the full string matches.
>>> pattern.fullmatch("doggie", 1, 3) # Matches within given limits.
- <_sre.SRE_Match object at ...>
+ <_sre.SRE_Match object; span=(1, 3), match='og'>
.. versionadded:: 3.4