From 5374833eb0bde8d44aff498a2b3fcf68a01f20ce Mon Sep 17 00:00:00 2001 From: Jocelyn Castellano Date: Sat, 22 Jul 2023 10:29:08 -0400 Subject: [PATCH] gh-105090: Replace incorrect TLSv1.2 with TLSv1.3 (GH-105404) (cherry picked from commit e5252c6127ad788b39221982964f935bd1513028) Co-authored-by: Jocelyn Castellano --- Doc/library/ssl.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 36c852974da910..2eefefc32eb0d7 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -2690,7 +2690,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.