Patch #742598 from Michael Pomraning: add .timeout attribute to SocketServer that will call
.handle_timeout() method when no requests are received within the timeout period.
diff --git a/Misc/ACKS b/Misc/ACKS
index 2ae4528..cf65424 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -521,6 +521,7 @@
 François Pinard
 Zach Pincus
 Michael Piotrowski
+Michael Pomraning
 Iustin Pop
 John Popplewell
 Amrit Prem
diff --git a/Misc/NEWS b/Misc/NEWS
index 35d9634..9e25b96 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -704,6 +704,9 @@
   be equal to calling getsockname() on the server's socket. Fixed by
   patch #1545011.
 
+- Patch #742598: Add .timeout attribute to SocketServer that calls
+  .handle_timeout() when no requests are received.
+
 - Bug #1651235: When a tuple was passed to a ctypes function call,
   Python would crash instead of raising an error.