diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-11-02 21:47:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-02 21:47:50 (GMT) |
commit | 71f602b54c9c5346d22a542e186746b06cccfc8e (patch) | |
tree | 4a1cf9e5fb3ee2b46fc39e382a5cd70ee09e250b /Doc/library/ssl.rst | |
parent | 6681a77c52df41636feb213d63ba27a759c7e5f4 (diff) | |
download | cpython-71f602b54c9c5346d22a542e186746b06cccfc8e.zip cpython-71f602b54c9c5346d22a542e186746b06cccfc8e.tar.gz cpython-71f602b54c9c5346d22a542e186746b06cccfc8e.tar.bz2 |
bpo-45457: Minor fix to documentation for SSLContext.load_default_certs. (GH-28947) (GH-29373)
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.
(cherry picked from commit 3551bf16ee5c25b6349209dd30e032f0f3b9ace3)
Co-authored-by: LincolnPuzey <lincoln@puzey.dev>
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 4d75616..a20f97a 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. |