diff options
author | Jan Brasna <1784648+janbrasna@users.noreply.github.com> | 2022-05-19 09:22:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-19 09:22:16 (GMT) |
commit | 41638967a0e0bf1114c9bba9454d081605b49009 (patch) | |
tree | 2b4a16471d7635aa8faae5b21e400733a56e3547 /Doc | |
parent | 654032ac5f6982b36d45e024037f37fb65166aed (diff) | |
download | cpython-41638967a0e0bf1114c9bba9454d081605b49009.zip cpython-41638967a0e0bf1114c9bba9454d081605b49009.tar.gz cpython-41638967a0e0bf1114c9bba9454d081605b49009.tar.bz2 |
Doc: amend ssl.PROTOCOL_SSLv2 and ssl.PROTOCOL_SSLv3 wording (#92634)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/ssl.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 54bd335..c7ca439 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:: |