fix the last fix
authorStefan Behnel <stefan_ml@behnel.de>
Fri, 22 Feb 2013 17:29:48 +0000 (18:29 +0100)
committerStefan Behnel <stefan_ml@behnel.de>
Fri, 22 Feb 2013 17:29:48 +0000 (18:29 +0100)
Cython/Compiler/Visitor.py

index d46853a..08c3ccb 100644 (file)
@@ -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):