commit | 19e9fefc660d623ce7c31fb008cde1157ae12aba | [log] [tgz] |
---|---|---|
author | Giampaolo RodolĂ <g.rodola@gmail.com> | Mon Nov 01 15:07:14 2010 +0000 |
committer | Giampaolo RodolĂ <g.rodola@gmail.com> | Mon Nov 01 15:07:14 2010 +0000 |
tree | 55124f9a3949ae80b5b361330e29c4843680307c | |
parent | abacccc50c891f32c83dcf9ae38fe310ecf87409 [diff] |
Fix Issue 6706: return None on connect() in case of EWOULDBLOCK/ECONNABORTED error.
diff --git a/Misc/NEWS b/Misc/NEWS index bfb1ebb..b9e38e2 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -66,6 +66,9 @@ Library ------- +- Issue 6706: asyncore accept() method no longer raises EWOULDBLOCK/ECONNABORTED + on incomplete connection attempt but returns None instead. + - Issue #10266: uu.decode didn't close in_file explicitly when it was given as a filename. Patch by Brian Brazil.