[Python-checkins] python/dist/src/Doc/lib libitertools.tex, 1.23, 1.24

akuchling at users.sourceforge.net akuchling at users.sourceforge.net
Sat Dec 6 17:29:45 EST 2003


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

Modified Files:
	libitertools.tex 
Log Message:
Edit description a bit

Index: libitertools.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libitertools.tex,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** libitertools.tex	6 Dec 2003 16:23:06 -0000	1.23
--- libitertools.tex	6 Dec 2003 22:29:43 -0000	1.24
***************
*** 133,139 ****
  \begin{funcdesc}{groupby}{iterable\optional{, key}}
    Make an iterator that returns consecutive keys and groups from the
!   \var{iterable}.  \var{key} is function computing a key value for each
    element.  If not specified or is \code{None}, \var{key} defaults to an
!   identity function   (returning the element unchanged).  Generally, the
    iterable needs to already be sorted on the same key function.
  
--- 133,139 ----
  \begin{funcdesc}{groupby}{iterable\optional{, key}}
    Make an iterator that returns consecutive keys and groups from the
!   \var{iterable}.  \var{key} is a function computing a key value for each
    element.  If not specified or is \code{None}, \var{key} defaults to an
!   identity function and returns  the element unchanged.  Generally, the
    iterable needs to already be sorted on the same key function.
  





More information about the Python-checkins mailing list