Cython has moved to github.

cython

view tests/compile/eqcmp.pyx @ 724:4e4808271bdf

Bump version number.
author Robert Bradshaw <robertwb@math.washington.edu>
date Thu Jun 12 16:53:51 2008 -0700 (3 years ago)
parents 612957ef6e8f
children 5905f7b15cb2
line source
1 cdef void foo():
2 cdef int bool, int1, int2
3 cdef float float1, float2
4 cdef char *ptr1, *ptr2
5 cdef int *ptr3
6 bool = int1 == int2
7 bool = int1 != int2
8 bool = float1 == float2
9 bool = ptr1 == ptr2
10 bool = int1 == float2
11 bool = ptr1 is ptr2
12 bool = ptr1 is not ptr2