Commit rejected hunk for nogill compatability.
authorRobert Bradshaw <robertwb@math.washington.edu>
Tue, 10 Jun 2008 09:52:26 +0000 (02:52 -0700)
committerRobert Bradshaw <robertwb@math.washington.edu>
Tue, 10 Jun 2008 09:52:26 +0000 (02:52 -0700)
Cython/Compiler/PyrexTypes.py

index 062df7e27aa201622a7731dec9da9e0922f9d7de..c6506ae0824b400059d1a7b9159798f64e0b9276 100644 (file)
@@ -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):