summaryrefslogtreecommitdiffstats
path: root/Doc/library/ssl.rst
diff options
context:
space:
mode:
authorJocelyn Castellano <admin@malwarefight.gq>2023-07-22 14:29:08 (GMT)
committerGitHub <noreply@github.com>2023-07-22 14:29:08 (GMT)
commite5252c6127ad788b39221982964f935bd1513028 (patch)
tree74c9a06c80d29c08d1aacba29e93e11b5beca357 /Doc/library/ssl.rst
parentae8b114c5b9d211f47bf521fcfdbf40ef72a1bac (diff)
downloadcpython-e5252c6127ad788b39221982964f935bd1513028.zip
cpython-e5252c6127ad788b39221982964f935bd1513028.tar.gz
cpython-e5252c6127ad788b39221982964f935bd1513028.tar.bz2
gh-105090: Replace incorrect TLSv1.2 with TLSv1.3 (#105404)
Diffstat (limited to 'Doc/library/ssl.rst')
-rw-r--r--Doc/library/ssl.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst
index 7f09552..1f8bbe1 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.