summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGiampaolo Rodola' <g.rodola@gmail.com>2012-03-22 15:24:33 (GMT)
committerGiampaolo Rodola' <g.rodola@gmail.com>2012-03-22 15:24:33 (GMT)
commitf4ce1146fc00a4477ee03eeecbc90566384a041f (patch)
treee6c85b052df640befa031c28dcdaa9e45b7005a4 /Misc
parent3539ef3d21a47beff871636bdf6cd5e40aa556e4 (diff)
downloadcpython-f4ce1146fc00a4477ee03eeecbc90566384a041f.zip
cpython-f4ce1146fc00a4477ee03eeecbc90566384a041f.tar.gz
cpython-f4ce1146fc00a4477ee03eeecbc90566384a041f.tar.bz2
fix #10340: properly handle EINVAL on OSX and also avoid to call handle_connect() in case of a disconnetected socket which is not meant to connect.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 81c3740..02bafcd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -34,6 +34,10 @@ Core and Builtins
Library
-------
+- Issue #10340: asyncore - properly handle EINVAL in dispatcher constructor on
+ OSX; avoid to call handle_connect in case of a disconnected socket which
+ was not meant to connect.
+
- Issue #14204: The ssl module now has support for the Next Protocol
Negotiation extension, if available in the underlying OpenSSL library.
Patch by Colin Marc.