diff options
author | Giampaolo RodolĂ <g.rodola@gmail.com> | 2010-11-01 15:07:14 (GMT) |
---|---|---|
committer | Giampaolo RodolĂ <g.rodola@gmail.com> | 2010-11-01 15:07:14 (GMT) |
commit | 19e9fefc660d623ce7c31fb008cde1157ae12aba (patch) | |
tree | 55124f9a3949ae80b5b361330e29c4843680307c /Misc | |
parent | abacccc50c891f32c83dcf9ae38fe310ecf87409 (diff) | |
download | cpython-19e9fefc660d623ce7c31fb008cde1157ae12aba.zip cpython-19e9fefc660d623ce7c31fb008cde1157ae12aba.tar.gz cpython-19e9fefc660d623ce7c31fb008cde1157ae12aba.tar.bz2 |
Fix Issue 6706: return None on connect() in case of EWOULDBLOCK/ECONNABORTED error.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -66,6 +66,9 @@ Core and Builtins 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. |