summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-03-26 19:27:16 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-03-26 19:27:16 (GMT)
commiteee91cda8012d7d39c0401a0465af736aa2d136a (patch)
treee79fdbcb7ceb5d3bf26408c7ae2a53fd14119894 /Misc
parentc7024e7fd61e349ed51e625d3649b9f09c1436b5 (diff)
downloadcpython-eee91cda8012d7d39c0401a0465af736aa2d136a.zip
cpython-eee91cda8012d7d39c0401a0465af736aa2d136a.tar.gz
cpython-eee91cda8012d7d39c0401a0465af736aa2d136a.tar.bz2
Issue #8222: Enable the SSL_MODE_AUTO_RETRY flag on SSL sockets, so that blocking
reads and writes are always retried by OpenSSL itself. (this is a followup to issue #3890)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 3 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1580768..581ee9a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -59,7 +59,9 @@ Library
- Issue #8200: logging: Handle errors when multiprocessing is not
fully loaded when logging occurs.
-- Issue #3890: Fix recv() and recv_into() on non-blocking SSL sockets.
+- Issue #3890, #8222: Fix recv() and recv_into() on non-blocking SSL sockets.
+ Also, enable the SSL_MODE_AUTO_RETRY flag on SSL sockets, so that blocking
+ reads and writes are always retried by OpenSSL itself.
- Issue #8179: Fix macpath.realpath() on a non-existing path.