This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

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:51adminsetgithub: 89620
2021-11-02 21:54:17lukasz.langasetstatus: open -> closed
resolution: fixed
messages: + msg405559

stage: patch review -> resolved
2021-11-02 21:53:51lukasz.langasetmessages: + msg405558
2021-11-02 21:48:00lukasz.langasetmessages: + msg405556
2021-11-02 21:28:00lukasz.langasetnosy: + lukasz.langa
messages: + msg405554
2021-11-02 21:27:56miss-islingtonsetpull_requests: + pull_request27633
2021-11-02 21:27:52miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request27631
2021-10-15 11:37:43jerrylikerice1ssetnosy: + jerrylikerice1s
2021-10-14 12:56:37LincolnPuzeysetkeywords: + patch
stage: needs patch -> patch review
pull_requests: + pull_request27237
2021-10-13 07:12:22christian.heimessetstage: needs patch
type: enhancement
components: + Documentation
versions: + Python 3.9, Python 3.10, Python 3.11
2021-10-13 07:01:17LincolnPuzeycreate