unop typo fix
authorRobert Bradshaw <robertwb@math.washington.edu>
Wed, 6 Apr 2011 07:45:28 +0000 (00:45 -0700)
committerRobert Bradshaw <robertwb@math.washington.edu>
Wed, 6 Apr 2011 07:45:28 +0000 (00:45 -0700)
Cython/Compiler/ExprNodes.py

index 6d68989c3ed8fe517cce846216b2e2c15f1e7d00..305d2bdb3730c4458bbef786a74bac8d21ad3b2b 100755 (executable)
@@ -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"