diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-04-23 21:11:10 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-04-23 21:11:10 (GMT) |
commit | 5a1c4d18804b44cffdf8c5fdacad7b01a7505036 (patch) | |
tree | 55f1d68da7028c3704a5a83803cb4fd9e0be50ce /Misc | |
parent | 6c889ac96b644e9e6171de4af39b96b463ee1f63 (diff) | |
download | cpython-5a1c4d18804b44cffdf8c5fdacad7b01a7505036.zip cpython-5a1c4d18804b44cffdf8c5fdacad7b01a7505036.tar.gz cpython-5a1c4d18804b44cffdf8c5fdacad7b01a7505036.tar.bz2 |
Merged revisions 80394 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r80394 | antoine.pitrou | 2010-04-23 02:16:21 +0200 (ven., 23 avril 2010) | 15 lines
Merged revisions 80392 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80392 | antoine.pitrou | 2010-04-23 01:33:02 +0200 (ven., 23 avril 2010) | 9 lines
Issue #8108: Fix the unwrap() method of SSL objects when the socket has
a non-infinite timeout. Also make that method friendlier with applications
wanting to continue using the socket in clear-text mode, by disabling
OpenSSL's internal readahead. Thanks to Darryl Miles for guidance.
Issue #8108: test_ftplib's non-blocking SSL server now has proper handling
of SSL shutdowns.
........
................
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -40,6 +40,11 @@ Core and Builtins Library ------- +- Issue #8108: Fix the unwrap() method of SSL objects when the socket has + a non-infinite timeout. Also make that method friendlier with applications + wanting to continue using the socket in clear-text mode, by disabling + OpenSSL's internal readahead. Thanks to Darryl Miles for guidance. + - Issue #8468: bz2.BZ2File() accepts str with surrogates and bytes filenames - Issue #8496: make mailcap.lookup() always return a list, rather than an |