其他分享
首页 > 其他分享> > 功能包包装装饰器的“启动问题”是什么?

功能包包装装饰器的“启动问题”是什么?

作者:互联网

Python 3.2在reprlib模块中引入了新功能recursive_repr.

当我查看source code时,发现以下代码:

def recursive_repr(fillvalue='...'):
    'Decorator to make a repr function return fillvalue for a recursive call'

    def decorating_function(user_function):
        repr_running = set()

        def wrapper(self):
            key = id(self), get_ident()
            if key in repr_running:
                return fillvalue
            repr_running.add(key)
            try:
                result = user_function(self)
            finally:
                repr_running.discard(key)
            return result

        # Can't use functools.wraps() here because of bootstrap issues
        wrapper.__module__ = getattr(user_function, '__module__')
        wrapper.__doc__ = getattr(user_function, '__doc__')
        wrapper.__name__ = getattr(user_function, '__name__')
        wrapper.__annotations__ = getattr(user_function, '__annotations__', {})
        return wrapper

    return decorating_function

我不明白什么是Bootstrap问题,为什么@wraps(user_function)无法应用于包装器?

解决方法:

在我看来,“引导程序问题”来自循环依赖项.在这种情况下,functools导入collections,而后者又导入reprlib.如果reprlib尝试导入functools.wraps,它将隐式尝试导入自身,这将无法正常工作. Python programming FAQ(2.7,但我认为此后没有改变)说,当模块使用from模块导入功能形式时,循环导入将失败,这些模块会这样做.

标签:python-3-2,functools,python
来源: https://codeday.me/bug/20191201/2077345.html