From 2ae93ebcf0ee45c3a7ad2e77a41a33fda6ca4c74 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw <robertwb@math.washington.edu> Date: Wed, 6 Apr 2011 00:45:28 -0700 Subject: [PATCH] unop typo fix --- 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 6d68989c..305d2bdb 100755 --- a/Cython/Compiler/ExprNodes.py +++ b/Cython/Compiler/ExprNodes.py @@ -5296,7 +5296,7 @@ class UnaryPlusNode(UnopNode): def analyse_c_operation(self, env): self.type = PyrexTypes.widest_numeric_type( - self.operand.type, PyreXTypes.c_int_type) + self.operand.type, PyrexTypes.c_int_type) def py_operation_function(self): return "PyNumber_Positive" -- 2.26.2