Stéfan van der Walt wrote: > Why is it necessary to decorate a pure "cdef" with > @cython.cdivision(True) in order to release the gil?
Probably because otherwise it assumes Python semantics for division, which requires making Python API calls, so the GIL is needed. -- Greg _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
