[Python-checkins] Doc: amend ssl.PROTOCOL_SSLv2 and ssl.PROTOCOL_SSLv3 wording (#92634)

erlend-aasland webhook-mailer at python.org
Thu May 19 05:22:32 EDT 2022


https://github.com/python/cpython/commit/41638967a0e0bf1114c9bba9454d081605b49009
commit: 41638967a0e0bf1114c9bba9454d081605b49009
branch: main
author: Jan Brasna <1784648+janbrasna at users.noreply.github.com>
committer: erlend-aasland <erlend.aasland at protonmail.com>
date: 2022-05-19T11:22:16+02:00
summary:

Doc: amend ssl.PROTOCOL_SSLv2 and ssl.PROTOCOL_SSLv3 wording (#92634)

files:
M Doc/library/ssl.rst

diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst
index 54bd335282699..c7ca4395ed96c 100644
--- a/Doc/library/ssl.rst
+++ b/Doc/library/ssl.rst
@@ -714,7 +714,7 @@ Constants
    Selects SSL version 2 as the channel encryption protocol.
 
    This protocol is not available if OpenSSL is compiled with the
-   ``OPENSSL_NO_SSL2`` flag.
+   ``no-ssl2`` option.
 
    .. warning::
 
@@ -728,8 +728,8 @@ Constants
 
    Selects SSL version 3 as the channel encryption protocol.
 
-   This protocol is not be available if OpenSSL is compiled with the
-   ``OPENSSL_NO_SSLv3`` flag.
+   This protocol is not available if OpenSSL is compiled with the
+   ``no-ssl3`` option.
 
    .. warning::
 



More information about the Python-checkins mailing list