From: Jocelyn Castellano Date: Sat, 22 Jul 2023 14:29:08 +0000 (-0400) Subject: gh-105090: Replace incorrect TLSv1.2 with TLSv1.3 (#105404) X-Git-Tag: v3.13.0a1~1293 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e5252c6127ad788b39221982964f935bd1513028;p=thirdparty%2FPython%2Fcpython.git gh-105090: Replace incorrect TLSv1.2 with TLSv1.3 (#105404) --- diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 7f0955263276..1f8bbe1e3de3 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -2592,7 +2592,7 @@ disabled by default. >>> client_context.maximum_version = ssl.TLSVersion.TLSv1_3 -The SSL context created above will only allow TLSv1.2 and later (if +The SSL context created above will only allow TLSv1.3 and later (if supported by your system) connections to a server. :const:`PROTOCOL_TLS_CLIENT` implies certificate validation and hostname checks by default. You have to load certificates into the context.