[pypy-svn] pypy default: Fix indentation

amauryfa commits-noreply at bitbucket.org
Fri Jan 21 08:34:36 CET 2011


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: 
Changeset: r41112:a004e54e5c9a
Date: 2011-01-21 08:32 +0100
http://bitbucket.org/pypy/pypy/changeset/a004e54e5c9a/

Log:	Fix indentation

diff --git a/pypy/module/itertools/interp_itertools.py b/pypy/module/itertools/interp_itertools.py
--- a/pypy/module/itertools/interp_itertools.py
+++ b/pypy/module/itertools/interp_itertools.py
@@ -1184,7 +1184,7 @@
     def max_index(self, j):
         return self.indices[j - 1]
 
-    @unwrap_spec(ObjSpace, W_Root, W_Root, int)
+ at unwrap_spec(ObjSpace, W_Root, W_Root, int)
 def W_CombinationsWithReplacement__new__(space, w_subtype, w_iterable, r):
         pool_w = space.fixedview(w_iterable)
         if r < 0:


More information about the Pypy-commit mailing list