Commit dbc563c4 authored by Stefan Behnel's avatar Stefan Behnel

Make error message more helpful.

parent 564a3340
......@@ -804,7 +804,7 @@ class ControlFlowAnalysis(CythonTransform):
return node
def visit_AssignmentNode(self, node):
raise InternalError("Unhandled assignment node")
raise InternalError("Unhandled assignment node %s" % type(node))
def visit_SingleAssignmentNode(self, node):
self._visit(node.rhs)
......
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