Cython has moved to github.

cython

view tests/compile/cassign.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 i1, i2
3 cdef char c1, c2
4 cdef char *p1, *p2
5 i1 = i2
6 i1 = c1
7 p1 = p2
8 obj1 = i1
9 i1 = obj1
10 p1 = obj1
11 p1 = "spanish inquisition"