From edf4cfbd1cdfe6fa1c4648d59219a93837d81074 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Tue, 20 Apr 2010 08:27:40 +0200 Subject: [PATCH] typo --- Cython/Compiler/ExprNodes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) { -- 2.26.2