Banish tab.

This commit is contained in:
Georg Brandl 2008-02-26 06:40:10 +00:00
parent df6ac3db57
commit 1b3e41c67e
1 changed files with 1 additions and 1 deletions

View File

@ -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)