[Python-checkins] python/dist/src/Doc/whatsnew whatsnew23.tex,1.125,1.126

akuchling@users.sourceforge.net akuchling@users.sourceforge.net
Sat, 01 Mar 2003 18:13:55 -0800


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

Modified Files:
	whatsnew23.tex 
Log Message:
Expand itertools paragraph

Index: whatsnew23.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/whatsnew/whatsnew23.tex,v
retrieving revision 1.125
retrieving revision 1.126
diff -C2 -d -r1.125 -r1.126
*** whatsnew23.tex	26 Feb 2003 19:00:52 -0000	1.125
--- whatsnew23.tex	2 Mar 2003 02:13:52 -0000	1.126
***************
*** 1355,1361 ****
  (Contributed by Piers Lauder and Tino Lange.)
  
! \item The \ulink{\module{itertools}}{../lib/module-itertools.html}
! module provides several functions to support efficient looping using
! iterators.
  
  \item Two new functions in the \module{math} module,
--- 1355,1367 ----
  (Contributed by Piers Lauder and Tino Lange.)
  
! \item The \module{itertools} contains a number of useful functions for
! use with iterators, inspired by various functions provided by the ML
! and Haskell languages.  For example,
! \code{itertools.ifilter(predicate, iterator)} returns all elements in
! the iterator for which the function \function{predicate()} returns
! \constant{True}, and \code{itertools.times(\var{N}, obj)} returns
! \code{obj} \var{N} times.  There are a number of other functions in
! the module; see the \ulink{package's reference
! documentation}{../lib/module-itertools.html} for details.
  
  \item Two new functions in the \module{math} module,