From: Raymond Hettinger Date: Sun, 27 Mar 2005 20:19:05 +0000 (+0000) Subject: Fix whitespace. X-Git-Tag: v2.5a0~1877 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1b2e0d9da0bf8dec1766e76839cf53b9557def3c;p=python Fix whitespace. --- diff --git a/Doc/lib/libitertools.tex b/Doc/lib/libitertools.tex index 9d7f7ca9c4..421d647404 100644 --- a/Doc/lib/libitertools.tex +++ b/Doc/lib/libitertools.tex @@ -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()