Cython has moved to github.

cython

view tests/compile/casttoexttype.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 extern class external.Spam:
2 pass
4 cdef void foo(object x):
5 pass
7 cdef void blarg(void *y, object z):
8 foo(<Spam>y)
9 foo(<Spam>z)