-
-
Notifications
You must be signed in to change notification settings - Fork 31.4k
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
bpo-32008: don't use PROTOCOL_TLSv1 in example #5789
Conversation
It's bad form to pin to an old version of TLS. ssl.SSLContext has the right protocol default, so let's not pass anyway.
2e13c7c
to
aee8b78
Compare
Thanks @benjaminp for the PR 🌮🎉.. I'm working now to backport this PR to: 2.7, 3.6, 3.7. |
It's bad form to pin to an old version of TLS. ssl.SSLContext has the right protocol default, so let's not pass anyway. (cherry picked from commit e9edee0) Co-authored-by: Benjamin Peterson <benjamin@python.org>
GH-5790 is a backport of this pull request to the 3.7 branch. |
It's bad form to pin to an old version of TLS. ssl.SSLContext has the right protocol default, so let's not pass anyway. (cherry picked from commit e9edee0) Co-authored-by: Benjamin Peterson <benjamin@python.org>
GH-5791 is a backport of this pull request to the 3.6 branch. |
Sorry, @benjaminp, I could not cleanly backport this to |
GH-5792 is a backport of this pull request to the 2.7 branch. |
It's bad form to pin to an old version of TLS.
https://bugs.python.org/issue32008