summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorGiampaolo RodolĂ  <g.rodola@gmail.com>2011-03-03 13:59:28 +0000
committerGiampaolo RodolĂ  <g.rodola@gmail.com>2011-03-03 13:59:28 +0000
commit13d003bd215ec6890a108c795239507a009e6013 (patch)
treecd05b55cceb65ff28af57e7418a17a887cf68566 /Misc
parent40c9aa62a3c8ca4c276076e56b32cc57225f11ef (diff)
downloadcpython-13d003bd215ec6890a108c795239507a009e6013.tar.gz
Merged revisions 88722 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88722 | giampaolo.rodola | 2011-03-03 14:57:47 +0100 (gio, 03 mar 2011) | 1 line Fix issue 11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN errors on accept(), recv() and send(). ........
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 1bd81768c9..d5512f26c0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -28,6 +28,9 @@ Core and Builtins
Library
-------
+- Issue #11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN errors
+ on accept(), send() and recv().
+
- Issue #11326: Add the missing connect_ex() implementation for SSL sockets,
and make it work for non-blocking connects.