From 74657f01bc19de0cafcdf3de0d0218e5be146762 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sat, 23 Feb 2013 22:19:27 +0100 Subject: [PATCH] minor cleanup --- Cython/Compiler/PyrexTypes.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cython/Compiler/PyrexTypes.py b/Cython/Compiler/PyrexTypes.py index dc7ee6d..ac1d6a5 100755 --- a/Cython/Compiler/PyrexTypes.py +++ b/Cython/Compiler/PyrexTypes.py @@ -1033,9 +1033,6 @@ class PyExtensionType(PyObjectType): is_extension_type = 1 has_attributes = 1 - def needs_nonecheck(self): - return True - objtypedef_cname = None def __init__(self, name, typedef_flag, base_type, is_external=0): @@ -1060,6 +1057,9 @@ class PyExtensionType(PyObjectType): if scope: scope.parent_type = self + def needs_nonecheck(self): + return True + def subtype_of_resolved_type(self, other_type): if other_type.is_extension_type or other_type.is_builtin_type: return self is other_type or ( -- 2.7.4