diff options
author | LincolnPuzey <lincoln@puzey.dev> | 2021-11-02 21:27:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-02 21:27:44 (GMT) |
commit | 3551bf16ee5c25b6349209dd30e032f0f3b9ace3 (patch) | |
tree | 43bd3a624f0cee3be2291fb74d07df1cfe106fa7 /Doc | |
parent | 4a8b4051734fd2ce46e15e6369811132ac3a5697 (diff) | |
download | cpython-3551bf16ee5c25b6349209dd30e032f0f3b9ace3.zip cpython-3551bf16ee5c25b6349209dd30e032f0f3b9ace3.tar.gz cpython-3551bf16ee5c25b6349209dd30e032f0f3b9ace3.tar.bz2 |
bpo-45457: Minor fix to documentation for SSLContext.load_default_certs. (GH-28947)
Specify that SSLContext.set_default_verify_paths is called on ALL systems.
The code of SSLContext.load_default_certs was changed in bpo-22449 to do this,
this fix corrects the documentation to match that change.
Diffstat (limited to 'Doc')
-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 c116741..eb33d7e 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -1576,7 +1576,7 @@ to speed up repeated connections from the same clients. Load a set of default "certification authority" (CA) certificates from default locations. On Windows it loads CA certs from the ``CA`` and - ``ROOT`` system stores. On other systems it calls + ``ROOT`` system stores. On all systems it calls :meth:`SSLContext.set_default_verify_paths`. In the future the method may load CA certificates from other locations, too. |