Cython has moved to github.

cython

view tests/compile/excvalcheck.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 int spam() except -1
2 cdef extern void grail() except *
3 cdef extern char *tomato() except? NULL
5 cdef void eggs():
6 cdef int i
7 cdef char *p
8 i = spam()
9 grail()
10 p = tomato()