From a6d21c489a6f1ec2c737a677819421bfbdcf4071 Mon Sep 17 00:00:00 2001 From: PandaNinjas Date: Tue, 6 Jun 2023 14:34:20 -0400 Subject: [PATCH] gh-105090: Replace incorrect TLSv1.2 with TLSv1.3 --- 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 18a6c5ab4858a4..e8ddb3cf09556c 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.