summaryrefslogtreecommitdiff
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-07-26 14:36:55 +0200
committerVictor Stinner <victor.stinner@gmail.com>2014-07-26 14:36:55 +0200
commitdf9e4a7d69467e6a42bd64c5346f7f873870d076 (patch)
tree3c75bb9f415e441d319322208771806eee595535 /Misc/NEWS
parent61f8e489f453542e9e486b72db3c36b066a5009d (diff)
downloadcpython-df9e4a7d69467e6a42bd64c5346f7f873870d076.tar.gz
Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowError
on closed socket. repr(socket.socket) already works fine.
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 d580e63402..9f7ca1dfcb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,9 @@ Core and Builtins
Library
-------
+- Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowError
+ on closed socket. repr(socket.socket) already works fine.
+
- Issue #16133: The asynchat.async_chat.handle_read() method now ignores
BlockingIOError exceptions.