]> granicus.if.org Git - python/commitdiff
Fix whitespace.
authorRaymond Hettinger <python@rcn.com>
Sun, 27 Mar 2005 20:19:05 +0000 (20:19 +0000)
committerRaymond Hettinger <python@rcn.com>
Sun, 27 Mar 2005 20:19:05 +0000 (20:19 +0000)
Doc/lib/libitertools.tex

index 9d7f7ca9c4f5f1c56f086887fc40bb451e717a95..421d647404a786654900ad57cfaf06462805fa91 100644 (file)
@@ -250,7 +250,7 @@ by functions or loops that truncate the stream.
   third line).  Equivalent to:
 
   \begin{verbatim}
-     def islice(iterable, *args):    
+     def islice(iterable, *args):
          s = slice(*args)
          it = iter(xrange(s.start or 0, s.stop or sys.maxint, s.step or 1))
          nexti = it.next()