]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix #10340: properly handle EINVAL on OSX and also avoid to call handle_connect(...
authorGiampaolo Rodola' <g.rodola@gmail.com>
Thu, 22 Mar 2012 15:24:33 +0000 (16:24 +0100)
committerGiampaolo Rodola' <g.rodola@gmail.com>
Thu, 22 Mar 2012 15:24:33 +0000 (16:24 +0100)
Misc/NEWS

index 81c3740884ca97b0df4c3373568a004e4ecc434f..02bafcd59e6c05cdf2adb427b156816af5389c9c 100644 (file)
--- 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.