summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-12-28 16:26:33 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-12-28 16:26:33 (GMT)
commit3e86ba4e321d20931648d110e1be12643cb8ff04 (patch)
treef01df34824605fa2b79dabd905d983ee0d22b44c /Misc
parentecff5e51a5c65037103c23c937a02184050b7117 (diff)
downloadcpython-3e86ba4e321d20931648d110e1be12643cb8ff04.zip
cpython-3e86ba4e321d20931648d110e1be12643cb8ff04.tar.gz
cpython-3e86ba4e321d20931648d110e1be12643cb8ff04.tar.bz2
Issue #19422: Explicitly disallow non-SOCK_STREAM sockets in the ssl module, rather than silently let them emit clear text data.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index bc0e0b4..b7924cb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,9 @@ Core and Builtins
Library
-------
+- Issue #19422: Explicitly disallow non-SOCK_STREAM sockets in the ssl
+ module, rather than silently let them emit clear text data.
+
- Issue #18116: getpass was always getting an error when testing /dev/tty,
and thus was always falling back to stdin, and would then raise an exception
if stdin could not be used (such as /dev/null). It also leaked an open file.