我在使用带有装饰器的文档字符串时遇到问题。给定以下示例:
def decorator(f):
def _decorator():
print 'decorator active'
f()
return _decorator
@decorator
def foo():
'''the magic foo function'''
print 'this is function foo'
help(foo)
现在帮助没有foo
按预期向我显示文档字符串,它显示:
Help on function _decorator in module __main__:
_decorator()
没有装饰器,帮助是正确的:
Help on function foo in module __main__:
foo()
the magic foo function
我知道,函数foo
是由装饰器包装的,所以函数对象不再是函数foo
。但是,按预期获取文档字符串(和帮助)的好解决方案是什么?