Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Cython / tests / compile / withgil.pyx
Size: Mime:
# mode: compile

cdef void f() with gil:
    x = 42

cdef int g(void* x) with gil:
    pass

f()
g("test")