diff options
author | scottwoodall <scott.woodall@gmail.com> | 2024-08-03 13:24:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-03 13:24:29 (GMT) |
commit | 06eb9701a182b4720dfa8766cb41cc5a3728a8b9 (patch) | |
tree | 6dc70b3af7fec5c04ea4c737b831db3434b324c8 /Doc/library/ssl.rst | |
parent | 50b36037518a8e7f7eee39b597d56b5b2756eb86 (diff) | |
download | cpython-06eb9701a182b4720dfa8766cb41cc5a3728a8b9.zip cpython-06eb9701a182b4720dfa8766cb41cc5a3728a8b9.tar.gz cpython-06eb9701a182b4720dfa8766cb41cc5a3728a8b9.tar.bz2 |
Doc: Grammar fix in ``library/ssl.rst``, 'Verifying certificates' (#122646)
Diffstat (limited to 'Doc/library/ssl.rst')
-rw-r--r-- | Doc/library/ssl.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 7d4c1f0..ad441c5 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -2710,7 +2710,7 @@ Verifying certificates When calling the :class:`SSLContext` constructor directly, :const:`CERT_NONE` is the default. Since it does not authenticate the other -peer, it can be insecure, especially in client mode where most of time you +peer, it can be insecure, especially in client mode where most of the time you would like to ensure the authenticity of the server you're talking to. Therefore, when in client mode, it is highly recommended to use :const:`CERT_REQUIRED`. However, it is in itself not sufficient; you also |