Commit 2608935e authored by Stefan Behnel's avatar Stefan Behnel

fix the last fix

parent e93d3772
......@@ -494,7 +494,9 @@ class MethodDispatcherTransform(EnvTransform):
def visit_PrimaryCmpNode(self, node):
if node.cascade:
return node # not currently handled below
# not currently handled below
self.visitchildren(node)
return node
return self._visit_binop_node(node)
def visit_BinopNode(self, 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