]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-45457: Minor fix to documentation for SSLContext.load_default_certs. (GH-28947...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 2 Nov 2021 21:47:50 +0000 (14:47 -0700)
committerGitHub <noreply@github.com>
Tue, 2 Nov 2021 21:47:50 +0000 (22:47 +0100)
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>
Doc/library/ssl.rst

index 4d75616488b5f309f0a3009770e9a9278e373ad8..a20f97a26535e8820df5947069b2aaceeaf4fb1c 100644 (file)
@@ -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.