他们有什么方法可以完成这项工作,而不牺牲 cdef 调用者中的 cdef 吗?(也不使用 cpdef)
from array import *
from numpy import *
cdef class Agents:
cdef public caller(self):
print "caller"
A[1].called()
cdef called(self):
print "called"
A = [Agents() for i in range(2)]
def main():
A[0].caller()