Cython has moved to github.

cython

view tests/compile/extcoerce.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 a8804ba88ce6
children 97625f229665
line source
1 cdef class Grail:
3 def __add__(int x, float y):
4 pass
6 cdef class Swallow:
7 pass
9 def f(Grail g):
10 cdef int i = 0
11 cdef Swallow s
12 g = x
13 x = g
14 g = i
15 i = g
16 g = s
17 s = g