Commit 84ee8e9c authored by Stefan Behnel's avatar Stefan Behnel

better error message

parent fdd78468
...@@ -3578,7 +3578,7 @@ class InPlaceAssignmentNode(AssignmentNode): ...@@ -3578,7 +3578,7 @@ class InPlaceAssignmentNode(AssignmentNode):
indices = indices, indices = indices,
is_temp = self.dup.is_temp) is_temp = self.dup.is_temp)
else: else:
assert False assert False, "Unsupported node: %s" % type(self.lhs)
self.lhs = target_lhs self.lhs = target_lhs
return self.dup return self.dup
......
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