diff options
author | Illia Volochii <illia.volochii@gmail.com> | 2021-04-18 07:10:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-18 07:10:53 (GMT) |
commit | 2798f247c0747d28cb857fa80803797b24696cb6 (patch) | |
tree | d88b82903f8f5dcb74bdc03f95d0cb1478b638b5 /Doc | |
parent | aa6da32edc3c6ddfda5e849561e20273b8d82771 (diff) | |
download | cpython-2798f247c0747d28cb857fa80803797b24696cb6.zip cpython-2798f247c0747d28cb857fa80803797b24696cb6.tar.gz cpython-2798f247c0747d28cb857fa80803797b24696cb6.tar.bz2 |
bpo-43641: Stop stating that TLS 1.2 is the most modern version in docs (GH-25041)
Automerge-Triggered-By: GH:tiran
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/ssl.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 9f74592..9d5e063 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -732,9 +732,8 @@ Constants .. data:: PROTOCOL_TLSv1_2 - Selects TLS version 1.2 as the channel encryption protocol. This is the - most modern version, and probably the best choice for maximum protection, - if both sides can speak it. Available only with openssl version 1.0.1+. + Selects TLS version 1.2 as the channel encryption protocol. + Available only with openssl version 1.0.1+. .. versionadded:: 3.4 |