summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-04-24 21:26:44 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-04-24 21:26:44 (GMT)
commitd3f8ab8bd37d942d64773e9043697003b8502049 (patch)
treeea8850776e86b56cd2f820ed693f00bdde51be6c /Misc
parentfb88636199c12f63d6c8c89f311cdafc91f30d2f (diff)
downloadcpython-d3f8ab8bd37d942d64773e9043697003b8502049.zip
cpython-d3f8ab8bd37d942d64773e9043697003b8502049.tar.gz
cpython-d3f8ab8bd37d942d64773e9043697003b8502049.tar.bz2
Merged revisions 80451-80452 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r80451 | antoine.pitrou | 2010-04-24 21:57:01 +0200 (sam., 24 avril 2010) | 4 lines The do_handshake() method of SSL objects now adjusts the blocking mode of the SSL structure if necessary (as other methods already do). ........ r80452 | antoine.pitrou | 2010-04-24 22:04:58 +0200 (sam., 24 avril 2010) | 4 lines 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/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0d72c83..e98e95d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -339,6 +339,12 @@ C-API
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).
+
- Issue #8391: os.execvpe() and os.getenv() supports unicode with surrogates
and bytes strings for environment keys and values