diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-02 18:23:19 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-02 18:23:19 (GMT) |
commit | 475546facf0574fa14df3a81ed6755165d8e886e (patch) | |
tree | 070e54c6f1136bae5076ee619c236d3afa8ecf41 /Doc | |
parent | 0c924b83eefead8c111f66452b0681a5c7485a5c (diff) | |
download | cpython-475546facf0574fa14df3a81ed6755165d8e886e.zip cpython-475546facf0574fa14df3a81ed6755165d8e886e.tar.gz cpython-475546facf0574fa14df3a81ed6755165d8e886e.tar.bz2 |
Fixed regex match representation in an example.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/re.rst | 2 |
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 |