From: Lisandro Dalcin Date: Wed, 14 Apr 2010 17:14:49 +0000 (-0300) Subject: fix typo in previous commit X-Git-Tag: 0.13.beta0~211 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9127adce32a1be4505df7a1088db2865c388fd16;p=cython.git fix typo in previous commit --- 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)