代码取自 Mark Lutz 的 Learning Python 4th Edition
class tracer:
def __init__(self, func):
self.calls = 0
self.func = func
def __call__(self, *args):
self.calls += 1
print('call %s to %s' % (self.calls, self.func.__name__))
self.func(*args)
@tracer
def spam(a, b, c):
print(a + b + c)
spam(1, 2, 3)
此外,当我运行此代码时,它也不会打印 1、2、3 的总和,但在书中,它显示它确实如此!整个代码让我摸不着头脑。我不知道这里发生了什么。