Hi, as a side-note: Johannes Wienke wrote: > cpdef class Foo: > cdef char* myData > > cdef void setData(Foo self, char *data) > self.myData = data no need to declare the type of self here, you can just write cdef void setData(self, char *data) self.myData = data Stefan