Commit c3b8f90c authored by Stefan Behnel's avatar Stefan Behnel

accidental commit

parent 8aeee1c7
...@@ -46,8 +46,6 @@ class NormalizeTree(CythonTransform): ...@@ -46,8 +46,6 @@ class NormalizeTree(CythonTransform):
self.visitchildren(node) self.visitchildren(node)
self.is_in_statlist = stacktmp self.is_in_statlist = stacktmp
if not self.is_in_statlist and not self.is_in_expr: if not self.is_in_statlist and not self.is_in_expr:
if isinstance(node, TupleNode):
print node
return StatListNode(pos=node.pos, stats=[node]) return StatListNode(pos=node.pos, stats=[node])
else: else:
return node return node
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment