标签: python class nested c-api
我目前正在使用“原始”C-API为python编写C扩展模块。我希望能够定义“嵌套类”,如下面的python代码
class A: class B: def __init__(self): self.i = 2 def __init__(self): self.b = A.B() a = A() b = A.B() print(a.b.i) print(b.i)
如何使用C-API创建一个嵌套类,如A.B?