我正在制作一个包装器对象,该对象将采用任意类的实例,然后自动包装所有自己的魔术方法,以简单地使用包装对象的魔术方法(和值)。出于某种原因,这不起作用:
class Wrapper:
def __init__(self, wrapped):
self.wrapped = wrapped
for method in filter(lambda x: x.startswith("__") and (x not in
["__init__", "__new__", "__class__", "__metaclass__"]),
dir(wrapped)):
if hasattr(getattr(wrapped, method), "__call__"):
new_func = functools.partial(getattr(type(wrapped), method), self.wrapped)
setattr(self, method, new_func)
t = Wrapper(7)
t + 8
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for +: 'Wrapper' and 'int'
class Tester:
def __init__(self):
self.v = 5
def __add__(self, other):
return self.v + other
y = Tester()
y + 7
12
t = Wrapper(y)
t + 9
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for +: 'Wrapper' and 'int'
9 + t
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for +: 'int' and 'Wrapper'
t.__add__
functools.partial(<function Tester.__add__ at 0x7fbec6372170>, <__main__.Tester object at 0x7fbec6392990>)
t.__add__(7)
12
我想也许部分不能正确处理类型的方法和实例方法之间的区别,但是当我直接调用我的包装器的魔法添加时,它可以正常工作。 (这在CPython 3.3中测试)
答案 0 :(得分:2)
特殊方法是always looked up on the type of the instance(这里是类对象),而不是实例。否则,当您尝试打印类本身的表示时,将使用类上的__repr__
; type(class).__repr__(class)
会使用正确的魔术方法,而class.__repr__()
会引发异常,因为未提供self
。
您需要直接在包装器上实现这些特殊方法,传播在包装对象上调用时可能引发的任何异常。