Author: Manuel Jacob <[email protected]>
Branch: py3k
Changeset: r83798:828214e58f10
Date: 2016-04-20 23:36 +0200
http://bitbucket.org/pypy/pypy/changeset/828214e58f10/

Log:    Get rid of tab in Python source file.

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
@@ -1193,9 +1193,8 @@
                 space.newtuple(gears)
             ]
             if self.lst is not None:
-                result_w = result_w + [
-                           space.newtuple([
-                               space.wrap(index) for index in self.indices])]
+                indices_w = [space.wrap(index) for index in self.indices]
+                result_w = result_w + [space.newtuple(indices_w)]
         else:
             result_w = [
                 space.type(self),
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to