Cython has moved to github.

cython

view tests/compile/index.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 def f(obj1, obj2, obj3):
2 cdef int int1, int2, int3
3 cdef float flt1, *ptr1
4 cdef int array1[42]
5 int1 = array1[int2]
6 flt1 = ptr1[int2]
7 array1[int1] = int2
8 ptr1[int1] = int2
9 obj1 = obj2[obj3]
10 int1 = array1[obj3]
11 obj1 = obj2[int3]
12 obj1[obj2] = obj3
13 array1[obj2] = int3
14 obj1[int2] = obj3
15 obj1[obj2] = 42