Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32k
Closed
Description
In Python 3.12, I removedkeyfile andcertfile parameters of most stdlib modules in issue#94172, but I forgot to removecafile andcapath of theurllib.request
module.
I propose to remove thecafile,capath andcadefault parameters ofurllib.request.urlopen()
in Python 3.13. These parameters are deprecated since Python 3.6: thecontext parameter should be used instead. Usingcafile andcapath is less safe than using thecontext parameter.