From 9127adce32a1be4505df7a1088db2865c388fd16 Mon Sep 17 00:00:00 2001 From: Lisandro Dalcin Date: Wed, 14 Apr 2010 14:14:49 -0300 Subject: [PATCH] fix typo in previous commit --- Cython/Compiler/PyrexTypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cython/Compiler/PyrexTypes.py b/Cython/Compiler/PyrexTypes.py index 23dceaf6..6babebe3 100755 --- a/Cython/Compiler/PyrexTypes.py +++ b/Cython/Compiler/PyrexTypes.py @@ -816,7 +816,7 @@ class CIntType(CNumericType): if not self.signed: Prefix = "Long" SignWord = "Unsigned" - if self.rank >== list(rank_to_type_name).index('PY_LONG_LONG'): + if self.rank >= list(rank_to_type_name).index('PY_LONG_LONG'): Prefix = "Long" TypeName = "LongLong" return "Py%s_From%s%s" % (Prefix, SignWord, TypeName) -- 2.26.2