Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-94172: urllib.request avoids deprecated key_file/cert_file #94232

Merged
merged 1 commit into from
Jun 26, 2022
Merged

gh-94172: urllib.request avoids deprecated key_file/cert_file #94232

merged 1 commit into from
Jun 26, 2022

Conversation

vstinner
Copy link
Member

@vstinner vstinner commented Jun 24, 2022

The urllib.request module no longer uses the deprecated key_file and
cert_file parameter of the http.client module.

The urllib.request module no longer uses the deprecated key_file and
cert_file parameter of the http.client module.
# cert and key file means the user wants to authenticate.
# enable TLS 1.3 PHA implicitly even for custom contexts.
if context.post_handshake_auth is not None:
context.post_handshake_auth = True
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This post_handshake_auth code is already in _create_https_context(), but I copied Python 3.11 code which also checks again post_handshake_auth after calling load_cert_chain().

@vstinner vstinner merged commit 37118fa into python:main Jun 26, 2022
@vstinner vstinner deleted the urllib_key_file branch June 26, 2022 08:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants