[Python-checkins] r61080 - python/trunk/Doc/library/itertools.rst

georg.brandl python-checkins at python.org
Tue Feb 26 07:40:10 CET 2008


Author: georg.brandl
Date: Tue Feb 26 07:40:10 2008
New Revision: 61080

Modified:
   python/trunk/Doc/library/itertools.rst
Log:
Banish tab.


Modified: python/trunk/Doc/library/itertools.rst
==============================================================================
--- python/trunk/Doc/library/itertools.rst	(original)
+++ python/trunk/Doc/library/itertools.rst	Tue Feb 26 07:40:10 2008
@@ -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)


More information about the Python-checkins mailing list