Issue 45457: Documentation for ssl.load_default_certs is outdated (original) (raw)

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/89620

classification

Title: Documentation for ssl.load_default_certs is outdated
Type: enhancement Stage: resolved
Components: Documentation, SSL Versions: Python 3.11, Python 3.10, Python 3.9

process

Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: christian.heimes Nosy List: LincolnPuzey, christian.heimes, jerrylikerice1s, lukasz.langa, miss-islington
Priority: normal Keywords: patch

Created on 2021-10-13 07:01 by LincolnPuzey, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 28947 merged LincolnPuzey,2021-10-14 12:56
PR 29373 merged miss-islington,2021-11-02 21:27
PR 29374 merged miss-islington,2021-11-02 21:27
Messages (5)
msg403806 - (view) Author: Lincoln Puzey (LincolnPuzey) * Date: 2021-10-13 07:01
The behavior of `ssl.load_default_certs()` was changed in https://bugs.python.org/issue22449 The new behavior is that `ssl.set_default_verify_paths()` is now called on all systems. The documentation still says that `ssl.set_default_verify_paths()` is only called on systems OTHER than Windows.
msg405554 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-11-02 21:28
New changeset 3551bf16ee5c25b6349209dd30e032f0f3b9ace3 by LincolnPuzey in branch 'main': bpo-45457: Minor fix to documentation for SSLContext.load_default_certs. (GH-28947) https://github.com/python/cpython/commit/3551bf16ee5c25b6349209dd30e032f0f3b9ace3
msg405556 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-11-02 21:48
New changeset 71f602b54c9c5346d22a542e186746b06cccfc8e by Miss Islington (bot) in branch '3.10': bpo-45457: Minor fix to documentation for SSLContext.load_default_certs. (GH-28947) (GH-29373) https://github.com/python/cpython/commit/71f602b54c9c5346d22a542e186746b06cccfc8e
msg405558 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-11-02 21:53
New changeset 4ab6e524abd2d7f21c2d7a6eaee5be1f93baf140 by Miss Islington (bot) in branch '3.9': bpo-45457: Minor fix to documentation for SSLContext.load_default_certs. (GH-28947) (GH-29374) https://github.com/python/cpython/commit/4ab6e524abd2d7f21c2d7a6eaee5be1f93baf140
msg405559 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-11-02 21:54
Thanks, Lincoln! ✨ 🍰 ✨
History
Date User Action Args
2022-04-11 14:59:51 admin set github: 89620
2021-11-02 21:54:17 lukasz.langa set status: open -> closedresolution: fixedmessages: + stage: patch review -> resolved
2021-11-02 21:53:51 lukasz.langa set messages: +
2021-11-02 21:48:00 lukasz.langa set messages: +
2021-11-02 21:28:00 lukasz.langa set nosy: + lukasz.langamessages: +
2021-11-02 21:27:56 miss-islington set pull_requests: + <pull%5Frequest27633>
2021-11-02 21:27:52 miss-islington set nosy: + miss-islingtonpull_requests: + <pull%5Frequest27631>
2021-10-15 11:37:43 jerrylikerice1s set nosy: + jerrylikerice1s
2021-10-14 12:56:37 LincolnPuzey set keywords: + patchstage: needs patch -> patch reviewpull_requests: + <pull%5Frequest27237>
2021-10-13 07:12:22 christian.heimes set stage: needs patchtype: enhancementcomponents: + Documentationversions: + Python 3.9, Python 3.10, Python 3.11
2021-10-13 07:01:17 LincolnPuzey create