renamed node
authorStefan Behnel <scoder@users.berlios.de>
Sun, 7 Dec 2008 20:34:27 +0000 (21:34 +0100)
committerStefan Behnel <scoder@users.berlios.de>
Sun, 7 Dec 2008 20:34:27 +0000 (21:34 +0100)
Cython/Compiler/Optimize.py
Cython/Compiler/UtilNodes.py

index a6c819b9d6b82de521152cabae1dc293a174ab0d..db9520cb06485974a6c653fbb7d86b24c1b7900c 100644 (file)
@@ -343,7 +343,7 @@ class FlattenInListTransform(Visitor.VisitorTransform, SkipDeclarations):
                                 operand2 = right)
 
         condition = reduce(concat, conds)
-        return UtilNodes.TempBlockExprNode(lhs, condition)
+        return UtilNodes.EvalWithTempExprNode(lhs, condition)
 
     def visit_Node(self, node):
         self.visitchildren(node)
index 780b8c89f889e7e8cf0352ae603823e319821702..ded4dc808c3a9b2ba73d4da5e4ce6236c18daa7f 100644 (file)
@@ -141,7 +141,7 @@ class ResultRefNode(AtomicExprNode):
         pass
 
 
-class TempBlockExprNode(ExprNodes.NewTempExprNode):
+class EvalWithTempExprNode(ExprNodes.NewTempExprNode):
     # A wrapper around a subexpression that moves an expression into a
     # temp variable and provides it to the subexpression.