summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-04-23 00:16:21 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-04-23 00:16:21 (GMT)
commit2c4f98b3c58365845539f0d921c9d12b466b5e30 (patch)
tree2cd4c117bd36284ea749776aa1c2088817c28508 /Misc/NEWS
parent582c0a6ac2cba5fd41222db04b94e7fc51389a08 (diff)
downloadcpython-2c4f98b3c58365845539f0d921c9d12b466b5e30.zip
cpython-2c4f98b3c58365845539f0d921c9d12b466b5e30.tar.gz
cpython-2c4f98b3c58365845539f0d921c9d12b466b5e30.tar.bz2
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/NEWS')
-rw-r--r--Misc/NEWS8
1 files changed, 8 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a8cc594..c65f8ab 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -329,6 +329,11 @@ C-API
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 #8496: make mailcap.lookup() always return a list, rather than an
iterator. Patch by Gregory Nofi.
@@ -1120,6 +1125,9 @@ Documentation
Tests
-----
+- Issue #8108: test_ftplib's non-blocking SSL server now has proper handling
+ of SSL shutdowns.
+
- Issues #8279, #8330, #8437, #8480: Fix test_gdb failures, patch written by
Dave Malcolm