标签: python class inheritance
class test(list): def dummy_method(self): pass a=test() b=test() type(a)
返回测试。
type(a+b)
返回列表。我想要测试。
显然我可以创建一个新的__add__(和__radd__我猜)方法,它包装了基本方法并返回了一些正确的类,但它看起来并不优雅...
__add__
__radd__