diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2008-01-19 16:26:13 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2008-01-19 16:26:13 (GMT) |
commit | e45a77adbec3ceb2aefe7ae7e60e28e903d16172 (patch) | |
tree | dbb47d9de478721f04abc073d3d85bd466c18e95 /Misc | |
parent | 5e3745c886929bc8db4b987b5eb178fbeede75da (diff) | |
download | cpython-e45a77adbec3ceb2aefe7ae7e60e28e903d16172.zip cpython-e45a77adbec3ceb2aefe7ae7e60e28e903d16172.tar.gz cpython-e45a77adbec3ceb2aefe7ae7e60e28e903d16172.tar.bz2 |
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.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -521,6 +521,7 @@ Martijn Pieters François Pinard Zach Pincus Michael Piotrowski +Michael Pomraning Iustin Pop John Popplewell Amrit Prem @@ -704,6 +704,9 @@ Library 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. |