summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-04-24 20:04:58 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-04-24 20:04:58 (GMT)
commitfc69af15629389801db4da64ac06b0a0e747e60a (patch)
treed2144b94112f150a0df14985241d73227ea955e2 /Misc
parent4d3e372ff3f611aa76458a48f26ec4701315c128 (diff)
downloadcpython-fc69af15629389801db4da64ac06b0a0e747e60a.zip
cpython-fc69af15629389801db4da64ac06b0a0e747e60a.tar.gz
cpython-fc69af15629389801db4da64ac06b0a0e747e60a.tar.bz2
Issue #5103: SSL handshake would ignore the socket timeout and block
indefinitely if the other end didn't respond.
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 b9bdc97..39341d4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -25,6 +25,9 @@ Core and Builtins
Library
-------
+- Issue #5103: SSL handshake would ignore the socket timeout and block
+ indefinitely if the other end didn't respond.
+
- The do_handshake() method of SSL objects now adjusts the blocking mode of
the SSL structure if necessary (as other methods already do).