Cython has moved to github.

cython

view tests/compile/excvaldecl.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 5905f7b15cb2
line source
1 cdef int spam() except 42:
2 pass
4 cdef float eggs() except 3.14:
5 pass
7 cdef char *grail() except NULL:
8 pass
10 cdef int tomato() except *:
11 pass
13 cdef int brian() except? 0:
14 pass
16 cdef int silly() except -1:
17 pass