[Python-checkins] python/dist/src/Modules itertoolsmodule.c,1.9,1.10

akuchling@users.sourceforge.net akuchling@users.sourceforge.net
Mon, 14 Apr 2003 08:31:31 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory sc8-pr-cvs1:/tmp/cvs-serv13067

Modified Files:
	itertoolsmodule.c 
Log Message:
Fix docstring typo

Index: itertoolsmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/itertoolsmodule.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** itertoolsmodule.c	17 Mar 2003 19:46:08 -0000	1.9
--- itertoolsmodule.c	14 Apr 2003 15:31:27 -0000	1.10
***************
*** 1767,1771 ****
  count([n]) --> n, n+1, n+2, ...\n\
  cycle(p) --> p0, p1, ... plast, p0, p1, ...\n\
! repeat(elem [,n]) --> elem, elem, elem, ... endlessly or upto n times\n\
  \n\
  Iterators terminating on the shortest input sequence:\n\
--- 1767,1771 ----
  count([n]) --> n, n+1, n+2, ...\n\
  cycle(p) --> p0, p1, ... plast, p0, p1, ...\n\
! repeat(elem [,n]) --> elem, elem, elem, ... endlessly or up to n times\n\
  \n\
  Iterators terminating on the shortest input sequence:\n\