Cython has moved to github.

cython

view tests/compile/cascmp.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, int3, int4
3 cdef object obj1, obj2, obj3, obj4
4 obj1 = 1
5 obj2 = 2
6 obj3 = 3
7 obj4 = 4
8 bool = int1 < int2 < int3
9 bool = obj1 < obj2 < obj3
10 bool = int1 < int2 < obj3
11 bool = obj1 < 2 < 3
12 bool = obj1 < 2 < 3 < 4
13 bool = int1 < (int2 == int3) < int4