Author: Omer Katz <[email protected]>
Branch: py3.3
Changeset: r80861:4af8035b618c
Date: 2015-11-23 16:50 +0200
http://bitbucket.org/pypy/pypy/changeset/4af8035b618c/

Log:    Fixed extra 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
@@ -1218,11 +1218,11 @@
         return self.w_total
 
     def reduce_w(self):
-            space = self.space
-            w_total = space.w_None if self.w_total is None else self.w_total
-            w_func = space.w_None if self.w_func is None else self.w_func
-            return space.newtuple([space.gettypefor(W_Accumulate),
-                                   space.newtuple([self.w_iterable, w_func]), 
w_total])
+        space = self.space
+        w_total = space.w_None if self.w_total is None else self.w_total
+        w_func = space.w_None if self.w_func is None else self.w_func
+        return space.newtuple([space.gettypefor(W_Accumulate),
+                               space.newtuple([self.w_iterable, w_func]), 
w_total])
 
     def setstate_w(self, w_total):
         self.w_total = w_total
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to