Cython has moved to github.

cython

view tests/compile/extinheritset.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 a8804ba88ce6
children
line source
1 cdef class Parrot:
2 pass
4 cdef class Norwegian(Parrot):
6 def __setitem__(self, i, x):
7 pass
9 def __setattr__(self, n, x):
10 pass
12 def __set__(self, i, v):
13 pass