Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b8a3f58

Browse files
committed
merge
2 parents 48aae57 + 6de88b3 commit b8a3f58

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Doc/library/re.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -801,7 +801,7 @@ attributes:
801801
>>> pattern.fullmatch("dog") # No match as "o" is not at the start of "dog".
802802
>>> pattern.fullmatch("ogre") # No match as not the full string matches.
803803
>>> pattern.fullmatch("doggie", 1, 3) # Matches within given limits.
804-
<_sre.SRE_Match object at ...>
804+
<_sre.SRE_Match object; span=(1, 3), match='og'>
805805

806806
.. versionadded:: 3.4
807807

Doc/whatsnew/3.4.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ TLSv1.1 and TLSv1.2 support.
742742
cert store.
743743

744744
(Contributed by Christian Heimes in :issue:`18143`, :issue:`18147` and
745-
:issue:`17134`.)
745+
:issue:`17134`.)
746746

747747
Support for server-side SNI using the new
748748
:meth:`ssl.SSLContext.set_servername_callback` method.

0 commit comments

Comments
 (0)