-
-
Notifications
You must be signed in to change notification settings - Fork 32.3k
bpo-28124: deprecate ssl.wrap_socket() #5888
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
Conversation
IMO the documentation of 3.6 and 2.7 should be updated, too. Of course the deprecation message must be removed first. |
52b06eb
to
26f4a26
Compare
The ssl module function ssl.wrap_socket() has been de-emphasized and deprecated in favor of the more secure and efficient SSLContext.wrap_socket() method. Signed-off-by: Christian Heimes <[email protected]>
26f4a26
to
db914cb
Compare
I have removed backport to 2.7 and3.6 to prevent @miss-islington from auto-merging the commits. |
@tiran: Please replace |
Thanks @tiran for the PR 🌮🎉.. I'm working now to backport this PR to: 3.7. |
The ssl module function ssl.wrap_socket() has been de-emphasized and deprecated in favor of the more secure and efficient SSLContext.wrap_socket() method. Signed-off-by: Christian Heimes <[email protected]> (cherry picked from commit 90f05a5) Co-authored-by: Christian Heimes <[email protected]>
GH-5924 is a backport of this pull request to the 3.7 branch. |
The ssl module function ssl.wrap_socket() has been de-emphasized and deprecated in favor of the more secure and efficient SSLContext.wrap_socket() method. Signed-off-by: Christian Heimes <[email protected]> (cherry picked from commit 90f05a5) Co-authored-by: Christian Heimes <[email protected]>
The ssl module function ssl.wrap_socket() has been de-emphasized
and deprecated in favor of the more secure and efficient
SSLContext.wrap_socket() method.
Signed-off-by: Christian Heimes [email protected]
https://bugs.python.org/issue28124