Cython has moved to github.

cython

view tests/compile/altet1.pyx.BROKEN @ 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
line source
1 __doc__ = """
2 >>> flub(25)
3 25
4 >>> g()
5 0
6 """
8 cdef extern from "altet1.h":
9 ctypedef int blarg
11 cdef blarg globvar
13 def flub(blarg bobble):
14 print bobble
16 globvar = 0
18 def g():
19 return globvar