From: Georg Brandl Date: Tue, 26 Feb 2008 06:40:10 +0000 (+0000) Subject: Banish tab. X-Git-Tag: v2.6a1~42 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1b3e41c67eb1efcc3dcc4bae7099cb0688144710;p=python Banish tab. --- diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 384b0f123f..c8f6e33f28 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)