diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2003-07-16 20:12:33 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2003-07-16 20:12:33 (GMT) |
commit | c760c6c4423af2c25cdfd6267fd93d0f1d0b7537 (patch) | |
tree | 23b10973f3f6ed76f68e1037f64c389b177a0a91 /Doc | |
parent | 6c733d37116dc2e343043e2214e1b49f893ed493 (diff) | |
download | cpython-c760c6c4423af2c25cdfd6267fd93d0f1d0b7537.zip cpython-c760c6c4423af2c25cdfd6267fd93d0f1d0b7537.tar.gz cpython-c760c6c4423af2c25cdfd6267fd93d0f1d0b7537.tar.bz2 |
Add reminder list of things to document; mention sys.getcheckinterval() and socket.timeout exception
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/whatsnew23.tex | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Doc/whatsnew/whatsnew23.tex b/Doc/whatsnew/whatsnew23.tex index 6f10287..042c640 100644 --- a/Doc/whatsnew/whatsnew23.tex +++ b/Doc/whatsnew/whatsnew23.tex @@ -12,6 +12,12 @@ \tableofcontents % To do: +% PYTHONINSPECT +% list.index +% file.encoding +% doctest extensions +% new version of IDLE +% XML-RPC nil extension % MacOS framework-related changes (section of its own, probably) %\section{Introduction \label{intro}} @@ -1201,6 +1207,8 @@ applications by reducing the switching overhead. Some multithreaded applications may suffer slower response time, but that's easily fixed by setting the limit back to a lower number using \function{sys.setcheckinterval(\var{N})}. +The limit can be retrieved with the new +\function{sys.getcheckinterval()} function. \item One minor but far-reaching change is that the names of extension types defined by the modules included with Python now contain the @@ -1617,7 +1625,7 @@ to make it work reliably across platforms. can call the \method{settimeout(\var{t})} method on a socket object to set a timeout of \var{t} seconds. Subsequent socket operations that take longer than \var{t} seconds to complete will abort and raise a -\exception{socket.error} exception. +\exception{socket.timeout} exception. The original timeout implementation was by Tim O'Malley. Michael Gilfix integrated it into the Python \module{socket} module and |