From 324882b8541c8267c2609d44fe9a0c6de464568d Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sun, 30 Nov 2008 07:07:20 +0100 Subject: [PATCH] moved CoercionNode to new temps (fixes 8 tests) --- Cython/Compiler/ExprNodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cython/Compiler/ExprNodes.py b/Cython/Compiler/ExprNodes.py index 51fc3a48..2c98c10e 100644 --- a/Cython/Compiler/ExprNodes.py +++ b/Cython/Compiler/ExprNodes.py @@ -4513,7 +4513,7 @@ def binop_node(pos, operator, operand1, operand2): # #------------------------------------------------------------------- -class CoercionNode(ExprNode): +class CoercionNode(NewTempExprNode): # Abstract base class for coercion nodes. # # arg ExprNode node being coerced -- 2.26.2