https://github.com/python/cpython/commit/a9e5e59b7d912b4a90c550fad6a2d208bf8a1ed9 commit: a9e5e59b7d912b4a90c550fad6a2d208bf8a1ed9 branch: 3.10 author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com> committer: pablogsal <Pablogsal at gmail.com> date: 2023年07月22日T16:30:09+02:00 summary: [3.10] gh-105090: Replace incorrect TLSv1.2 with TLSv1.3 (GH-105404) (#107039) Co-authored-by: Jocelyn Castellano <admin at malwarefight.gq> files: M Doc/library/ssl.rst diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 36c852974da91..2eefefc32eb0d 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.