Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c924b8 commit 475546fCopy full SHA for 475546f
1 file changed
Doc/library/re.rst
@@ -801,7 +801,7 @@ attributes:
801
>>> pattern.fullmatch("dog") # No match as "o" is not at the start of "dog".
802
>>> pattern.fullmatch("ogre") # No match as not the full string matches.
803
>>> pattern.fullmatch("doggie", 1, 3) # Matches within given limits.
804
- <_sre.SRE_Match object at ...>
+ <_sre.SRE_Match object; span=(1, 3), match='og'>
805
806
.. versionadded:: 3.4
807
0 commit comments