From: Giampaolo Rodola' Date: Thu, 22 Mar 2012 15:24:33 +0000 (+0100) Subject: fix #10340: properly handle EINVAL on OSX and also avoid to call handle_connect(... X-Git-Tag: v3.3.0a2~87 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f4ce1146fc00a4477ee03eeecbc90566384a041f;p=thirdparty%2FPython%2Fcpython.git 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. --- diff --git a/Misc/NEWS b/Misc/NEWS index 81c3740884ca..02bafcd59e6c 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.