From fe3df1a19d150da2ece865b3400c104dda748dc1 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw <robertwb@math.washington.edu> Date: Fri, 12 Nov 2010 02:29:34 -0800 Subject: [PATCH] Fix for non-parse generated BinOp nodes. --- Cython/Compiler/ExprNodes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Cython/Compiler/ExprNodes.py b/Cython/Compiler/ExprNodes.py index 920feef1..4743e282 100755 --- a/Cython/Compiler/ExprNodes.py +++ b/Cython/Compiler/ExprNodes.py @@ -5301,6 +5301,7 @@ class BinopNode(ExprNode): # - Allocate temporary for result if needed. subexprs = ['operand1', 'operand2'] + inplace = False def calculate_constant_result(self): func = compile_time_binary_operators[self.operator] -- 2.26.2