[Python-checkins] python/nondist/sandbox/itertools itertools.c,1.8,1.9

montanaro@users.sourceforge.net montanaro@users.sourceforge.net
Mon, 27 Jan 2003 07:23:05 -0800


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

Modified Files:
	itertools.c 
Log Message:
a couple docstring typos


Index: itertools.c
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/itertools/itertools.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** itertools.c	27 Jan 2003 12:16:42 -0000	1.8
--- itertools.c	27 Jan 2003 15:22:59 -0000	1.9
***************
*** 794,798 ****
  "times(n) --> times object\n\
  \n\
! Return an times object whose .next() method returns n consecutive\n\
  instance of None.");
  
--- 794,798 ----
  "times(n) --> times object\n\
  \n\
! Return a times object whose .next() method returns n consecutive\n\
  instance of None.");
  
***************
*** 1035,1039 ****
  "count([firstval]) --> count object\n\
  \n\
! Return an count object whose .next() method returns consecutive\n\
  integers starting from zero or, if specified, from firstval.");
  
--- 1035,1039 ----
  "count([firstval]) --> count object\n\
  \n\
! Return a count object whose .next() method returns consecutive\n\
  integers starting from zero or, if specified, from firstval.");
  
***************
*** 1204,1208 ****
  "loopzip(iter1 [,iter2 [...]]) --> loopzip object\n\
  \n\
! Return an loopzip object whose .next() method returns a list where\n\
  the i-th element comes from the i-th iterable argument.  The .next()\n\
  method updates the returns the same list everytime until the shortest\n\
--- 1204,1208 ----
  "loopzip(iter1 [,iter2 [...]]) --> loopzip object\n\
  \n\
! Return a loopzip object whose .next() method returns a list where\n\
  the i-th element comes from the i-th iterable argument.  The .next()\n\
  method updates the returns the same list everytime until the shortest\n\