From 4a65b0a355bc4b3d08b1214135861d65a6668b0d Mon Sep 17 00:00:00 2001 From: Giampaolo Rodola' Date: Thu, 22 Mar 2012 16:22:06 +0100 Subject: [PATCH] issue 10340 - forgot to update Misc/NEWS --- Misc/NEWS | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Misc/NEWS b/Misc/NEWS index c14e999c94b..e3b110de98f 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -31,6 +31,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 #12757: Fix the skipping of doctests when python is run with -OO so that it works in unittest's verbose mode as well as non-verbose mode.