summaryrefslogtreecommitdiff
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-07-26 14:52:55 +0200
committerVictor Stinner <victor.stinner@gmail.com>2014-07-26 14:52:55 +0200
commit0a649c7bb1bdc6238963decc5b77ad805e551a9e (patch)
tree1b58230a6f6526cf51f54371bd8153c3dd4882c3 /Misc/NEWS
parent465db3c69ad69df013149eaecffc3ac719b177ca (diff)
downloadcpython-git-0a649c7bb1bdc6238963decc5b77ad805e551a9e.tar.gz
Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowError
on closed socket.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 01f4c17304..f2087c5c5c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Core and Builtins
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.