From: Lisandro Dalcin Date: Tue, 5 Apr 2011 22:26:28 +0000 (-0300) Subject: fix typo numeic -> numeric X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9a5c1bbc8b75340d6b4acc120674cd85cd1cdec0;p=cython.git fix typo numeic -> numeric --- diff --git a/Cython/Compiler/ExprNodes.py b/Cython/Compiler/ExprNodes.py index 5c7cf896..6d68989c 100755 --- a/Cython/Compiler/ExprNodes.py +++ b/Cython/Compiler/ExprNodes.py @@ -5295,7 +5295,7 @@ class UnaryPlusNode(UnopNode): operator = '+' def analyse_c_operation(self, env): - self.type = PyrexTypes.widest_numeic_type( + self.type = PyrexTypes.widest_numeric_type( self.operand.type, PyreXTypes.c_int_type) def py_operation_function(self):