From: Robert Bradshaw Date: Tue, 10 Jun 2008 09:52:26 +0000 (-0700) Subject: Commit rejected hunk for nogill compatability. X-Git-Tag: 0.9.8rc1~14 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7c203ae4f7b9f0426ffcd5c9630dccb6ddb99801;p=cython.git Commit rejected hunk for nogill compatability. --- diff --git a/Cython/Compiler/PyrexTypes.py b/Cython/Compiler/PyrexTypes.py index 062df7e2..c6506ae0 100644 --- a/Cython/Compiler/PyrexTypes.py +++ b/Cython/Compiler/PyrexTypes.py @@ -699,8 +699,6 @@ class CFuncType(CType): return 0 if not self.same_calling_convention_as(other_type): return 0 - if self.nogil and not other_type.nogil: - return 0 return 1 def compatible_signature_with(self, other_type, as_cmethod = 0):