]> granicus.if.org Git - python/commitdiff
[3.6] Clean up some confusing text left by PROTOCOL_SSLv23 -> PROTOCOL_TLS transition...
authorMariatta <Mariatta@users.noreply.github.com>
Tue, 2 May 2017 05:55:53 +0000 (22:55 -0700)
committerGitHub <noreply@github.com>
Tue, 2 May 2017 05:55:53 +0000 (22:55 -0700)
(cherry picked from commit d4069de5112f0408801ff2479476827bb3e0e8fc)

Doc/library/ssl.rst

index bbb13745b203e6ea22e238c2dd2729fa7ef6a6fb..0ce73c1409548082d6b3bb43fc6338dc6f1c984b 100644 (file)
@@ -610,13 +610,13 @@ Constants
 .. data:: PROTOCOL_TLS
 
    Selects the highest protocol version that both the client and server support.
-   Despite the name, this option can select "TLS" protocols as well as "SSL".
+   Despite the name, this option can select both "SSL" and "TLS" protocols.
 
    .. versionadded:: 3.6
 
 .. data:: PROTOCOL_TLS_CLIENT
 
-   Auto-negotiate the highest protocol version like :data:`PROTOCOL_SSLv23`,
+   Auto-negotiate the highest protocol version like :data:`PROTOCOL_TLS`,
    but only support client-side :class:`SSLSocket` connections. The protocol
    enables :data:`CERT_REQUIRED` and :attr:`~SSLContext.check_hostname` by
    default.
@@ -625,7 +625,7 @@ Constants
 
 .. data:: PROTOCOL_TLS_SERVER
 
-   Auto-negotiate the highest protocol version like :data:`PROTOCOL_SSLv23`,
+   Auto-negotiate the highest protocol version like :data:`PROTOCOL_TLS`,
    but only support server-side :class:`SSLSocket` connections.
 
    .. versionadded:: 3.6