Евгений Почитаев, 02.02.2011 18:21:
May be someone do class inheritance in Python/C API, I know how create
superclass/subclass. But how I can initialize superclass from subclass
initializer?

struct SuperClass {
     PyObject_HEAD;
     //...
};

struct SubClass {
     PyObject_HEAD;

You need to insert the super class struct here, not a plain new object struct.

In case you want to avoid stumbling over problems like this and instead concentrate on getting functionality implemented, take a look at Cython.

http://cython.org

Stefan

--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to