commit | 1b3e41c67eb1efcc3dcc4bae7099cb0688144710 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Tue Feb 26 06:40:10 2008 +0000 |
committer | Georg Brandl <georg@python.org> | Tue Feb 26 06:40:10 2008 +0000 |
tree | c37f13812c0879db22c8353e8fd50a801281ad56 | |
parent | df6ac3db57278f4ee8633b160ddd6b0d3e4df278 [diff] [blame] |
Banish tab.
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 @@ 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)