summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-07-26 12:36:55 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-07-26 12:36:55 (GMT)
commite254e53c833d39e1e479a16d7976a7726c0c1981 (patch)
tree665b7fcd7a0acb9a38b51bd34fdf9dbe252cc8ff /Misc
parent51e44ea66aefb4229e506263acf40d35596d279c (diff)
downloadcpython-e254e53c833d39e1e479a16d7976a7726c0c1981.zip
cpython-e254e53c833d39e1e479a16d7976a7726c0c1981.tar.gz
cpython-e254e53c833d39e1e479a16d7976a7726c0c1981.tar.bz2
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')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d580e63..9f7ca1d 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.