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.
2 parents 48aae57 + 6de88b3 commit b8a3f58Copy full SHA for b8a3f58
2 files 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
Doc/whatsnew/3.4.rst
@@ -742,7 +742,7 @@ TLSv1.1 and TLSv1.2 support.
742
cert store.
743
744
(Contributed by Christian Heimes in :issue:`18143`, :issue:`18147` and
745
- :issue:`17134`.)
+:issue:`17134`.)
746
747
Support for server-side SNI using the new
748
:meth:`ssl.SSLContext.set_servername_callback` method.
0 commit comments