summaryrefslogtreecommitdiffstats
path: root/Doc/library/poplib.rst
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-12-27 22:01:16 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-12-27 22:01:16 (GMT)
commit473f45b4bc7c0c4670ad07f93dbc4a2872c0a6dd (patch)
tree3db836b0d74f139723e9d9cd8c84766b4f1152ea /Doc/library/poplib.rst
parentd26538163e31329833f43e0d39510b9be6d9d615 (diff)
downloadcpython-473f45b4bc7c0c4670ad07f93dbc4a2872c0a6dd.zip
cpython-473f45b4bc7c0c4670ad07f93dbc4a2872c0a6dd.tar.gz
cpython-473f45b4bc7c0c4670ad07f93dbc4a2872c0a6dd.tar.bz2
whatsnew: rewrite urllib, doctest, and poplib sections.
Also collapse redundant versionadded/versionchanged markup in poplib.stls entry.
Diffstat (limited to 'Doc/library/poplib.rst')
-rw-r--r--Doc/library/poplib.rst10
1 files changed, 4 insertions, 6 deletions
diff --git a/Doc/library/poplib.rst b/Doc/library/poplib.rst
index deb49fc..fa1db01 100644
--- a/Doc/library/poplib.rst
+++ b/Doc/library/poplib.rst
@@ -198,15 +198,13 @@ An :class:`POP3` instance has the following methods:
*context* parameter is a :class:`ssl.SSLContext` object which allows
bundling SSL configuration options, certificates and private keys into
- a single (potentially long-lived) structure.
+ a single (potentially long-lived) structure. This method supports
+ hostname checking via :attr:`SSLContext.check_hostname`
+ :attr:`SSLContext.check_hostname` and *Server Name Indicator* (see
+ :data:`~ssl.HAS_SNI`).
.. versionadded:: 3.4
- .. versionchanged:: 3.4
- The method now supports hostname check with
- :attr:`SSLContext.check_hostname` and *Server Name Indicator* (see
- :data:`~ssl.HAS_SNI`).
-
Instances of :class:`POP3_SSL` have no additional methods. The interface of this
subclass is identical to its parent.