From: Robert Bradshaw Date: Wed, 6 Apr 2011 07:45:28 +0000 (-0700) Subject: unop typo fix X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=2ae93ebcf0ee45c3a7ad2e77a41a33fda6ca4c74;p=cython.git unop typo fix --- 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"