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

cdef void foo():
    cdef int bool, int1=0, int2=0
    cdef float float1=0, float2=0
    cdef char *ptr1=NULL, *ptr2=NULL
    cdef int *ptr3
    bool = int1 == int2
    bool = int1 != int2
    bool = float1 == float2
    bool = ptr1 == ptr2
    bool = int1 == float2
    bool = ptr1 is ptr2
    bool = ptr1 is not ptr2

foo()