[Python-checkins] python/nondist/sandbox/itertools itertools.c,1.10,1.11

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Mon, 27 Jan 2003 15:34:17 -0800


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

Modified Files:
	itertools.c 
Log Message:
Missing backslash

Index: itertools.c
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/itertools/itertools.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** itertools.c	27 Jan 2003 23:33:26 -0000	1.10
--- itertools.c	27 Jan 2003 23:34:15 -0000	1.11
***************
*** 1194,1198 ****
  the i-th element comes from the i-th iterable argument.  The .next()\n\
  method continues until the shortest iterable in the argument sequence\n\
! is exhausted and then it raises StopIteration.  Works like the zip()\n
  function but consumes less memory by returning an iterator instead of\n\
  a list.");
--- 1194,1198 ----
  the i-th element comes from the i-th iterable argument.  The .next()\n\
  method continues until the shortest iterable in the argument sequence\n\
! is exhausted and then it raises StopIteration.  Works like the zip()\n\
  function but consumes less memory by returning an iterator instead of\n\
  a list.");