]> granicus.if.org Git - python/commitdiff
Clean up some confusing text left by PROTOCOL_SSLv23 -> PROTOCOL_TLS transition ...
authorNathaniel J. Smith <njs@pobox.com>
Tue, 2 May 2017 05:43:31 +0000 (22:43 -0700)
committerMariatta <Mariatta@users.noreply.github.com>
Tue, 2 May 2017 05:43:31 +0000 (22:43 -0700)
Doc/library/ssl.rst

index e3945191f53248c140a788f5006858c57aef9e15..6deaded0d6effd64244d5f7355979700eda4cb9d 100644 (file)
@@ -614,13 +614,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.
@@ -629,7 +629,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