[Python-checkins] python/dist/src/Doc/whatsnew whatsnew23.tex,1.152,1.153

akuchling@users.sourceforge.net akuchling@users.sourceforge.net
Wed, 16 Jul 2003 13:12:36 -0700


Update of /cvsroot/python/python/dist/src/Doc/whatsnew
In directory sc8-pr-cvs1:/tmp/cvs-serv10443

Modified Files:
	whatsnew23.tex 
Log Message:
Add reminder list of things to document; mention sys.getcheckinterval() and socket.timeout exception

Index: whatsnew23.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/whatsnew/whatsnew23.tex,v
retrieving revision 1.152
retrieving revision 1.153
diff -C2 -d -r1.152 -r1.153
*** whatsnew23.tex	16 Jul 2003 14:44:12 -0000	1.152
--- whatsnew23.tex	16 Jul 2003 20:12:33 -0000	1.153
***************
*** 13,16 ****
--- 13,22 ----
  
  % 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)
  
***************
*** 1202,1205 ****
--- 1208,1213 ----
  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
***************
*** 1618,1622 ****
  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.
  
  The original timeout implementation was by Tim O'Malley.  Michael
--- 1626,1630 ----
  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.timeout} exception.
  
  The original timeout implementation was by Tim O'Malley.  Michael