summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-02-26 06:40:10 (GMT)
committerGeorg Brandl <georg@python.org>2008-02-26 06:40:10 (GMT)
commit1b3e41c67eb1efcc3dcc4bae7099cb0688144710 (patch)
treec37f13812c0879db22c8353e8fd50a801281ad56
parentdf6ac3db57278f4ee8633b160ddd6b0d3e4df278 (diff)
downloadcpython-1b3e41c67eb1efcc3dcc4bae7099cb0688144710.zip
cpython-1b3e41c67eb1efcc3dcc4bae7099cb0688144710.tar.gz
cpython-1b3e41c67eb1efcc3dcc4bae7099cb0688144710.tar.bz2
Banish tab.
-rw-r--r--Doc/library/itertools.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst
index 384b0f1..c8f6e33 100644
--- a/Doc/library/itertools.rst
+++ b/Doc/library/itertools.rst
@@ -97,7 +97,7 @@ loops that truncate the stream.
def combinations(iterable, r):
pool = tuple(iterable)
- if pool:
+ if pool:
n = len(pool)
vec = range(r)
yield tuple(pool[i] for i in vec)