diff options
author | Christian Heimes <christian@cheimes.de> | 2013-12-02 19:20:11 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-12-02 19:20:11 (GMT) |
commit | 216d463b1f5eea7b6505b9ec13372d830ef720b6 (patch) | |
tree | b219b30b748d56d27bd71ae5c081929aed2a5031 /Doc/library/nntplib.rst | |
parent | 1bc7068d7fde0eaf2155240f629bcf80280daff6 (diff) | |
download | cpython-216d463b1f5eea7b6505b9ec13372d830ef720b6.zip cpython-216d463b1f5eea7b6505b9ec13372d830ef720b6.tar.gz cpython-216d463b1f5eea7b6505b9ec13372d830ef720b6.tar.bz2 |
Issue #19783: nntplib now supports SSLContext.check_hostname and server name
indication for TLS/SSL connections.
Diffstat (limited to 'Doc/library/nntplib.rst')
-rw-r--r-- | Doc/library/nntplib.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/library/nntplib.rst b/Doc/library/nntplib.rst index 0098041..a8145fe 100644 --- a/Doc/library/nntplib.rst +++ b/Doc/library/nntplib.rst @@ -102,6 +102,10 @@ The module itself defines the following classes: .. versionadded:: 3.2 + .. versionchanged:: 3.4 + The class now supports hostname check with + :attr:`SSLContext.check_hostname` and *Server Name Indicator* (see + :data:`~ssl.HAS_SNI`). .. exception:: NNTPError @@ -241,6 +245,10 @@ tuples or objects that the method normally returns will be empty. .. versionadded:: 3.2 + .. versionchanged:: 3.4 + The method now supports hostname check with + :attr:`SSLContext.check_hostname` and *Server Name Indicator* (see + :data:`~ssl.HAS_SNI`). .. method:: NNTP.newgroups(date, *, file=None) |