From 1b3e41c67eb1efcc3dcc4bae7099cb0688144710 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Tue, 26 Feb 2008 06:40:10 +0000 Subject: [PATCH] Banish tab. --- Doc/library/itertools.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 384b0f123fb..c8f6e33f286 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)