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.