Fibonacci and double-unlock examples

This commit is contained in:
2019-11-25 23:06:53 -05:00
commit 29edf9cc8f
7 changed files with 159 additions and 0 deletions

View File

@ -0,0 +1,8 @@
cdef void _unlock() nogil:
with nogil:
pass
def unlock():
with nogil:
_unlock()