This commit is contained in:
Christian Heimes 2013-12-02 20:02:04 +01:00
commit b8a3f58158
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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.