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

cdef char *p1
cdef int *p2
cdef int x

p1 = NULL
p2 = NULL
x = p1 == NULL
x = NULL == p2