Author: Benjamin Peterson <benja...@python.org>
Branch: py3k
Changeset: r53612:18ffe2c7429c
Date: 2012-03-14 17:04 -0500
http://bitbucket.org/pypy/pypy/changeset/18ffe2c7429c/

Log:    wrap

diff --git a/pypy/interpreter/astcompiler/astbuilder.py 
b/pypy/interpreter/astcompiler/astbuilder.py
--- a/pypy/interpreter/astcompiler/astbuilder.py
+++ b/pypy/interpreter/astcompiler/astbuilder.py
@@ -816,7 +816,8 @@
 
     def handle_star_expr(self, star_expr_node):
         expr = self.handle_expr(star_expr_node.children[1])
-        return ast.Starred(expr, ast.Load, star_expr_node.lineno, 
star_expr_node.column)
+        return ast.Starred(expr, ast.Load, star_expr_node.lineno,
+                           star_expr_node.column)
 
     def handle_lambdef(self, lambdef_node):
         expr = self.handle_expr(lambdef_node.children[-1])
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to