DEBSOURCES
Skip Quicknav
sources / cython / 3.0.11%2Bdfsg-2 / tests / compile / withgil.pyx
12345678910
# mode: compile cdef void f() with gil: x = 42 cdef int g(void* x) with gil: pass f() g("test")