[Python-checkins] python/nondist/sandbox/itertools libitertools.tex,1.15,1.16

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Wed, 29 Jan 2003 11:28:33 -0800


Update of /cvsroot/python/python/nondist/sandbox/itertools
In directory sc8-pr-cvs1:/tmp/cvs-serv24598

Modified Files:
	libitertools.tex 
Log Message:
Spell-out another variable

Index: libitertools.tex
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/itertools/libitertools.tex,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** libitertools.tex	29 Jan 2003 19:08:07 -0000	1.15
--- libitertools.tex	29 Jan 2003 19:28:29 -0000	1.16
***************
*** 216,223 ****
  
    \begin{verbatim}
!      def starmap(func, iterable):
           iterable = iter(iterable)
           while True:
!              yield func(*iterable.next())
    \end{verbatim}
  \end{funcdesc}
--- 216,223 ----
  
    \begin{verbatim}
!      def starmap(function, iterable):
           iterable = iter(iterable)
           while True:
!              yield function(*iterable.next())
    \end{verbatim}
  \end{funcdesc}