我有一个公共类,其中包含使用cpdef定义的方法。根据cython文档,这可以从C调用。但是生成的头文件没有为此生成任何C / C ++函数/方法。
cdef public class Model[type ModelType, object Model]:
cdef ModelContext *modelContext
cpdef calculate(self):
print 'calculate called on Modell'