diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-05-19 02:40:39 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-19 02:40:39 -0700 |
commit | 3e534b464af77cade6295d1f18619f33c8b7ba70 (patch) | |
tree | 29c2d86a803300364f90bb5541660d81a425249d | |
parent | 17524b084b565b321b4671f50a62864ea907b24f (diff) | |
download | cpython-git-3e534b464af77cade6295d1f18619f33c8b7ba70.tar.gz |
Doc: amend ssl.PROTOCOL_SSLv2 and ssl.PROTOCOL_SSLv3 wording (GH-92634)
(cherry picked from commit 41638967a0e0bf1114c9bba9454d081605b49009)
Co-authored-by: Jan Brasna <1784648+janbrasna@users.noreply.github.com>
-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 19d983bcfe..afb3e356db 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:: |