release-the-gil/src/double_unlock_cython.pyx

9 lines
106 B
Cython
Raw Normal View History

2019-11-25 23:06:53 -05:00
cdef void _unlock() nogil:
with nogil:
pass
def unlock():
with nogil:
_unlock()