Cython has moved to github.

cython

view tests/compile/extcmethcall.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 class Spam:
3 cdef int tons
5 cdef void add_tons(self, int x):
6 pass
9 cdef class SuperSpam(Spam):
10 pass
13 cdef void tomato():
14 cdef Spam spam
15 cdef SuperSpam superspam
16 spam = superspam
17 spam.add_tons(42)
18 superspam.add_tons(1764)