diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2008-01-19 16:34:09 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2008-01-19 16:34:09 (GMT) |
commit | f60b6415e619246cd1ad46fbae6a8fbad558fd91 (patch) | |
tree | 1c0e4fe00d0c6c40abecd3e67b94d84b52c08dbc | |
parent | e45a77adbec3ceb2aefe7ae7e60e28e903d16172 (diff) | |
download | cpython-f60b6415e619246cd1ad46fbae6a8fbad558fd91.zip cpython-f60b6415e619246cd1ad46fbae6a8fbad558fd91.tar.gz cpython-f60b6415e619246cd1ad46fbae6a8fbad558fd91.tar.bz2 |
Add item
-rw-r--r-- | Doc/whatsnew/2.6.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst index 46922a4..b5f0d84 100644 --- a/Doc/whatsnew/2.6.rst +++ b/Doc/whatsnew/2.6.rst @@ -1102,6 +1102,13 @@ complete list of changes, or look through the CVS logs for all the details. (Contributed by Alberto Bertogli.) .. Patch #1646 + +* The base classes in the :mod:`SocketServer` module now support + calling a :meth:`handle_timeout` method after a span of inactivity + specified by the server's :attr:`timeout` attribute. (Contributed + by Michael Pomraning.) + + .. Patch #742598 * A new variable in the :mod:`sys` module, :attr:`float_info`, is an object |