Commit fa33c684 authored by Stefan Behnel's avatar Stefan Behnel

clean up some whitespace

parent c6951de8
...@@ -1229,11 +1229,11 @@ class WithTransform(CythonTransform, SkipDeclarations): ...@@ -1229,11 +1229,11 @@ class WithTransform(CythonTransform, SkipDeclarations):
is_temp=True)) is_temp=True))
if target is not None: if target is not None:
body = Nodes.StatListNode( body = Nodes.StatListNode(
pos, stats = [ pos, stats=[
Nodes.WithTargetAssignmentStatNode( Nodes.WithTargetAssignmentStatNode(
pos, lhs = target, pos, lhs=target,
rhs = ResultRefNode(node.enter_call), rhs=ResultRefNode(node.enter_call),
orig_rhs = node.enter_call), orig_rhs=node.enter_call),
body]) body])
excinfo_target = ExprNodes.TupleNode(pos, slow=True, args=[ excinfo_target = ExprNodes.TupleNode(pos, slow=True, args=[
......
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