mirror of
https://github.com/speice-io/release-the-gil
synced 2025-07-02 06:16:15 -04:00
9 lines
106 B
Cython
9 lines
106 B
Cython
cdef void _unlock() nogil:
|
|
with nogil:
|
|
pass
|
|
|
|
|
|
def unlock():
|
|
with nogil:
|
|
_unlock()
|