[Python-checkins] python/dist/src/Doc/lib libitertools.tex, 1.30, 1.31

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Sun Jul 11 15:20:14 CEST 2004


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18500

Modified Files:
	libitertools.tex 
Log Message:
Style nit.

Index: libitertools.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libitertools.tex,v
retrieving revision 1.30
retrieving revision 1.31
diff -C2 -d -r1.30 -r1.31
*** libitertools.tex	12 Jun 2004 07:59:40 -0000	1.30
--- libitertools.tex	11 Jul 2004 13:20:11 -0000	1.31
***************
*** 134,138 ****
  \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
--- 134,138 ----
  \begin{funcdesc}{groupby}{iterable\optional{, key}}
    Make an iterator that returns consecutive keys and groups from the
!   \var{iterable}. The \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
***************
*** 333,337 ****
  \begin{funcdesc}{tee}{iterable\optional{, n=2}}
    Return \var{n} independent iterators from a single iterable.
!   The case where \var{n} is two is equivalent to:
  
    \begin{verbatim}
--- 333,337 ----
  \begin{funcdesc}{tee}{iterable\optional{, n=2}}
    Return \var{n} independent iterators from a single iterable.
!   The case where \code{n==2} is equivalent to:
  
    \begin{verbatim}



More information about the Python-checkins mailing list