summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2018-02-27 08:21:34 (GMT)
committerGitHub <noreply@github.com>2018-02-27 08:21:34 (GMT)
commit90f05a527c7d439f1d0cba80f2eb32e60ee20fc3 (patch)
tree31935f804412c3f814c20925574f4c775daeb246 /Misc/NEWS.d/next
parent05d9fe32a1245b9a798e49e0c1eb91f110935b69 (diff)
downloadcpython-90f05a527c7d439f1d0cba80f2eb32e60ee20fc3.zip
cpython-90f05a527c7d439f1d0cba80f2eb32e60ee20fc3.tar.gz
cpython-90f05a527c7d439f1d0cba80f2eb32e60ee20fc3.tar.bz2
bpo-28124: deprecate ssl.wrap_socket() (#5888)
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 <christian@python.org>
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Documentation/2018-02-25-16-33-35.bpo-28124._uzkgq.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Documentation/2018-02-25-16-33-35.bpo-28124._uzkgq.rst b/Misc/NEWS.d/next/Documentation/2018-02-25-16-33-35.bpo-28124._uzkgq.rst
new file mode 100644
index 0000000..4f4ca00
--- /dev/null
+++ b/Misc/NEWS.d/next/Documentation/2018-02-25-16-33-35.bpo-28124._uzkgq.rst
@@ -0,0 +1,3 @@
+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.