From 475546facf0574fa14df3a81ed6755165d8e886e Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Mon, 2 Dec 2013 20:23:19 +0200 Subject: Fixed regex match representation in an example. --- Doc/library/re.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v0.12 From 6de88b3107108d1d6cb8a1939caaad1d9b354db4 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Mon, 2 Dec 2013 20:31:00 +0200 Subject: Fixed formatting (was parsed as description list). --- Doc/whatsnew/3.4.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index 301ab8f..5d360c4 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -742,7 +742,7 @@ TLSv1.1 and TLSv1.2 support. cert store. (Contributed by Christian Heimes in :issue:`18143`, :issue:`18147` and - :issue:`17134`.) +:issue:`17134`.) Support for server-side SNI using the new :meth:`ssl.SSLContext.set_servername_callback` method. -- cgit v0.12