我想你要:
class B(A): @property def attr(self): return super(B, self).attr
您提到要返回父类的getter,但是您需要调用getter而不是返回它。
欢迎分享,转载请注明来源:内存溢出
我想你要:
class B(A): @property def attr(self): return super(B, self).attr
您提到要返回父类的getter,但是您需要调用getter而不是返回它。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)