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: Typo in urllib.request warning: cpath → capath
Type: Stage: resolved
Components: Library (Lib) Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: PedanticHacker, benjamin.peterson, hiaji, jwilk
Priority: normal Keywords: patch

Created on 2018-11-24 20:16 by jwilk, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 10699 merged PedanticHacker, 2018-11-25 18:31
PR 10701 merged miss-islington, 2018-11-25 18:33
PR 10702 merged miss-islington, 2018-11-25 18:33
Messages (6)
msg330379 - (view) Author: Jakub Wilk (jwilk) Date: 2018-11-24 20:16
It should be "capath", not "cpath", in this warning:

DeprecationWarning: cafile, cpath and cadefault are deprecated, use a custom context instead.
msg330382 - (view) Author: John Hiatt (hiaji) Date: 2018-11-25 03:06
I fixed this. Can you help me get it into the official repository?
msg330391 - (view) Author: Boštjan Mejak (PedanticHacker) * Date: 2018-11-25 13:34
Created a PR based on this issue. See: https://github.com/python/cpython/pull/10699
msg330392 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2018-11-25 18:32
New changeset 158695817d736df8b18682866033c87e46252309 by Benjamin Peterson (Boštjan Mejak) in branch 'master':
closes bpo-35309: cpath should be capath (GH-10699)
https://github.com/python/cpython/commit/158695817d736df8b18682866033c87e46252309
msg330395 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2018-11-25 20:50
New changeset 8c1592e53a8981451f59050198da34a584160b4e by Benjamin Peterson (Miss Islington (bot)) in branch '3.6':
closes bpo-35309: cpath should be capath (GH-10702)
https://github.com/python/cpython/commit/8c1592e53a8981451f59050198da34a584160b4e
msg330396 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2018-11-25 20:51
New changeset 6a528ccb4c09933c434be1011b2f5e148170d3a1 by Benjamin Peterson (Miss Islington (bot)) in branch '3.7':
closes bpo-35309: cpath should be capath (GH-10701)
https://github.com/python/cpython/commit/6a528ccb4c09933c434be1011b2f5e148170d3a1
History
Date User Action Args
2022-04-11 14:59:08adminsetgithub: 79490
2018-11-25 20:51:04benjamin.petersonsetmessages: + msg330396
2018-11-25 20:50:50benjamin.petersonsetmessages: + msg330395
2018-11-25 18:33:15miss-islingtonsetpull_requests: + pull_request9954
2018-11-25 18:33:07miss-islingtonsetpull_requests: + pull_request9953
2018-11-25 18:32:52benjamin.petersonsetstatus: open -> closed

nosy: + benjamin.peterson
messages: + msg330392

resolution: fixed
stage: patch review -> resolved
2018-11-25 18:31:20PedanticHackersetkeywords: + patch
stage: patch review
pull_requests: + pull_request9952
2018-11-25 13:34:21PedanticHackersetnosy: + PedanticHacker
messages: + msg330391
2018-11-25 03:06:48hiajisetnosy: + hiaji
messages: + msg330382
2018-11-24 20:16:36jwilksettitle: Typo in urllib.request warning: cpath → cpath -> Typo in urllib.request warning: cpath → capath
2018-11-24 20:16:14jwilkcreate