commit | 0a649c7bb1bdc6238963decc5b77ad805e551a9e | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Sat Jul 26 14:52:55 2014 +0200 |
committer | Victor Stinner <victor.stinner@gmail.com> | Sat Jul 26 14:52:55 2014 +0200 |
tree | 1b58230a6f6526cf51f54371bd8153c3dd4882c3 | |
parent | 465db3c69ad69df013149eaecffc3ac719b177ca [diff] [blame] |
Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowError on closed socket.
diff --git a/Misc/NEWS b/Misc/NEWS index 01f4c17..f2087c5 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Library ------- +- Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowError + on closed socket. + - Issue #16133: The asynchat.async_chat.handle_read() method now ignores socket.error() exceptions with blocking I/O errors: EAGAIN, EALREADY, EINPROGRESS, or EWOULDBLOCK.