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 / khavkine1.pyx
Size: Mime:
# mode: compile

cdef class T:
    cdef int[1] a

cdef object b

cdef void f(void *obj):
    (<T> obj).a[0] = 1

b = None
f(NULL)