我有一个带有@classmethod
的基类,它充当许多后代类中大量方法的装饰器。
class BaseClass():
@classmethod
def some_decorator(cls, method):
@wraps(method)
def inner_method(self, *args, **kwargs):
# do stuff
return method(self, *args, **kwargs)
return inner_method
class ChildClass(BaseClass):
@BaseClass.some_decorator
def some_child_method(self):
# do other stuff
return
当我分析这段代码并通过树视图查看它时,我看到数百个来自数百个不同地方的some_decorator
来电。
然后我看到some_decorator
回电给它刚刚来的数百个地方。
这很烦人,我还没有找到解决方法,无论是通过改变代码还是通过不同的方式进行分析。 (使用gprof2dot atm:How can you get the call tree with python profilers?)
思想?
答案 0 :(得分:1)
有一些方法可以构建装饰器来保存文档/签名。 wrapt库为此提供了许多功能。
https://wrapt.readthedocs.io/en/latest/decorators.html#decorating-class-methods
最终会看起来像这样:
class BaseClass():
@wrapt.decorator
@classmethod
def some_decorator(cls, method, instance, *args, *kwargs):
# do stuff
return method(instance, *args, **kwargs)