Chris Colbert wrote: > I'm trying to test writing extensions that release the gil. This simple > example is failing cython compilation with errors stating that the > count() function requires the gil. > > Can anyone point me in the right direction?
http://trac.cython.org/cython_trac/ticket/205 A fix is scheduled at "not before the 0.12 release". Until then, you must use the for i from 0 <= i < n: ... syntax. -- Dag Sverre _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
