Cython has moved to github.

cython

view tests/compile/hinsen1.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 >>> test()
3 1
4 """
6 cdef extern from "hinsen1.h":
8 ctypedef class spam.Spam [object PySpamObject]:
9 pass
12 cdef class SpamAndEggs(Spam):
14 cdef cook(self):
15 return 1
17 def test():
18 cdef SpamAndEggs s
19 s = SpamAndEggs()
20 return s.cook()