使用基本方法的Python类失去了类型

时间:2015-02-09 08:29:47

标签: python class inheritance

class test(list):
   def dummy_method(self):
      pass

a=test()
b=test()

type(a)

返回测试。

type(a+b)

返回列表。我想要测试。

显然我可以创建一个新的__add__(和__radd__我猜)方法,它包装了基本方法并返回了一些正确的类,但它看起来并不优雅...

0 个答案:

没有答案