Cython has moved to github.

cython

view tests/compile/indices.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
children
line source
1 cdef int* a
2 cdef object x
4 cdef int f(int i):
5 print i
6 return i
8 x[f(1)] = 3
9 a[f(1)] = 3
11 x[f(2)] += 4
12 a[f(2)] += 4
14 print x[1]
15 print a[1]
17 x[<object>f(1)] = 15