OUARDA MEHDI wrote: > class LinearConfigurationSpaceJoint(Joint): ... > cdef class RzRyRxJoint(LinearConfigurationSpaceJoint):
Unless Cython has enhanced something here, you can't do that. At least in Pyrex, an extension type can only inherit from another built-in or extension type, not a Python class. Since you're defining the base class in Cython, there's no reason not to make it an extension type as well. -- Greg _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
