Daniel Yarlett wrote: > A fairly brief question: how does one get a Cython class to inherit from > a Python class defined in another file?
This cannot work. cdef classes need a complete inheritance chain of cdef classes. Any reason you can't just use a normal Python subclass? Stefan _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
