diff options
author | Giampaolo RodolĂ <g.rodola@gmail.com> | 2010-11-01 15:18:09 (GMT) |
---|---|---|
committer | Giampaolo RodolĂ <g.rodola@gmail.com> | 2010-11-01 15:18:09 (GMT) |
commit | 5ea3d0f95b51009fa1c3409e7dd1c12006427ccc (patch) | |
tree | d532cf8a8c9b9fccd3f8cf7738a1716a4e3662f5 /Misc | |
parent | 8581c7e11a2e38c076fc3d96f30fce394ff1ce69 (diff) | |
download | cpython-5ea3d0f95b51009fa1c3409e7dd1c12006427ccc.zip cpython-5ea3d0f95b51009fa1c3409e7dd1c12006427ccc.tar.gz cpython-5ea3d0f95b51009fa1c3409e7dd1c12006427ccc.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
@@ -143,6 +143,9 @@ C-API 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. |