Cython has moved to github.

cython

view tests/compile/cnumop.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():
2 cdef int int1, int2, int3
3 cdef char char1
4 cdef long long1, long2
5 cdef float float1, float2
6 cdef double double1
7 int1 = int2 * int3
8 int1 = int2 / int3
9 long1 = long2 * char1
10 float1 = int1 * float2
11 double1 = float1 * int2