Commit edf4cfbd authored by Stefan Behnel's avatar Stefan Behnel

typo

parent d22ebc4b
...@@ -5562,7 +5562,7 @@ class CmpNode(object): ...@@ -5562,7 +5562,7 @@ class CmpNode(object):
else: else:
negation = "" negation = ""
if op == 'in' or op == 'not_in': 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: if self.type is PyrexTypes.py_object_type:
coerce_result = "__Pyx_PyBoolOrNull_FromLong" coerce_result = "__Pyx_PyBoolOrNull_FromLong"
if op == 'not_in': if op == 'not_in':
...@@ -5644,7 +5644,7 @@ class CmpNode(object): ...@@ -5644,7 +5644,7 @@ class CmpNode(object):
else: else:
return op return op
contians_utility_code = UtilityCode( contains_utility_code = UtilityCode(
proto=""" proto="""
static CYTHON_INLINE long __Pyx_NegateNonNeg(long b) { return unlikely(b < 0) ? b : !b; } static CYTHON_INLINE long __Pyx_NegateNonNeg(long b) { return unlikely(b < 0) ? b : !b; }
static CYTHON_INLINE PyObject* __Pyx_PyBoolOrNull_FromLong(long b) { static CYTHON_INLINE PyObject* __Pyx_PyBoolOrNull_FromLong(long b) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment