From: Stefan Behnel Date: Tue, 20 Apr 2010 06:27:40 +0000 (+0200) Subject: typo X-Git-Tag: 0.13.beta0~177 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=edf4cfbd1cdfe6fa1c4648d59219a93837d81074;p=cython.git typo --- diff --git a/Cython/Compiler/ExprNodes.py b/Cython/Compiler/ExprNodes.py index c8d733ca..ec0c0f15 100755 --- a/Cython/Compiler/ExprNodes.py +++ b/Cython/Compiler/ExprNodes.py @@ -5562,7 +5562,7 @@ class CmpNode(object): else: negation = "" if op == 'in' or op == 'not_in': - code.globalstate.use_utility_code(contians_utility_code) + code.globalstate.use_utility_code(contains_utility_code) if self.type is PyrexTypes.py_object_type: coerce_result = "__Pyx_PyBoolOrNull_FromLong" if op == 'not_in': @@ -5644,7 +5644,7 @@ class CmpNode(object): else: return op -contians_utility_code = UtilityCode( +contains_utility_code = UtilityCode( proto=""" static CYTHON_INLINE long __Pyx_NegateNonNeg(long b) { return unlikely(b < 0) ? b : !b; } static CYTHON_INLINE PyObject* __Pyx_PyBoolOrNull_FromLong(long b) {