diff options
author | Raymond Hettinger <python@rcn.com> | 2005-03-27 20:19:05 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2005-03-27 20:19:05 (GMT) |
commit | 1b2e0d9da0bf8dec1766e76839cf53b9557def3c (patch) | |
tree | 1f27ba07ff67b98c83dc9fb937f39813f947dc6e /Doc/lib/libitertools.tex | |
parent | fdf3bd6630a1797e05124c69ccfb4c07882ae9db (diff) | |
download | cpython-1b2e0d9da0bf8dec1766e76839cf53b9557def3c.zip cpython-1b2e0d9da0bf8dec1766e76839cf53b9557def3c.tar.gz cpython-1b2e0d9da0bf8dec1766e76839cf53b9557def3c.tar.bz2 |
Fix whitespace.
Diffstat (limited to 'Doc/lib/libitertools.tex')
-rw-r--r-- | Doc/lib/libitertools.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libitertools.tex b/Doc/lib/libitertools.tex index 9d7f7ca..421d647 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() |