]> granicus.if.org Git - python/commitdiff
Banish tab.
authorGeorg Brandl <georg@python.org>
Tue, 26 Feb 2008 06:40:10 +0000 (06:40 +0000)
committerGeorg Brandl <georg@python.org>
Tue, 26 Feb 2008 06:40:10 +0000 (06:40 +0000)
Doc/library/itertools.rst

index 384b0f123fb6978fddb44efd79173f0dc2455cff..c8f6e33f2866ce1bf2abaa35e9f049dce94d558a 100644 (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)