当前位置: 首页>>代码示例>>Python>>正文


Python functools.cached_property方法代码示例

本文整理汇总了Python中functools.cached_property方法的典型用法代码示例。如果您正苦于以下问题:Python functools.cached_property方法的具体用法?Python functools.cached_property怎么用?Python functools.cached_property使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在functools的用法示例。


在下文中一共展示了functools.cached_property方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __get__

# 需要导入模块: import functools [as 别名]
# 或者: from functools import cached_property [as 别名]
def __get__(
            self, instance: None, owner: Optional["Type[_S]"] = ...
        ) -> "cached_property[_S, _T]":
            raise NotImplementedError() 
开发者ID:pytest-dev,项目名称:pytest,代码行数:6,代码来源:compat.py

示例2: __set_name__

# 需要导入模块: import functools [as 别名]
# 或者: from functools import cached_property [as 别名]
def __set_name__(self, owner, name):
            if self.attrname is None:
                self.attrname = name
            elif name != self.attrname:
                raise TypeError(
                    "Cannot assign the same cached_property to two different names "
                    f"({self.attrname!r} and {name!r})."
                ) 
开发者ID:JarryShaw,项目名称:PyPCAPKit,代码行数:10,代码来源:compat.py

示例3: __get__

# 需要导入模块: import functools [as 别名]
# 或者: from functools import cached_property [as 别名]
def __get__(self, instance, owner=None):
            if instance is None:
                return self
            if self.attrname is None:
                raise TypeError(
                    "Cannot use cached_property instance without calling __set_name__ on it.")
            try:
                cache = instance.__dict__
            except AttributeError:  # not all objects have __dict__ (e.g. class defines slots)
                msg = (
                    f"No '__dict__' attribute on {type(instance).__name__!r} "
                    f"instance to cache {self.attrname!r} property."
                )
                raise TypeError(msg) from None
            val = cache.get(self.attrname, _NOT_FOUND)
            if val is _NOT_FOUND:
                with self.lock:
                    # check if another thread filled cache while we awaited lock
                    val = cache.get(self.attrname, _NOT_FOUND)
                    if val is _NOT_FOUND:
                        val = self.func(instance)
                        try:
                            cache[self.attrname] = val
                        except TypeError:
                            msg = (
                                f"The '__dict__' attribute on {type(instance).__name__!r} instance "
                                f"does not support item assignment for caching {self.attrname!r} property."
                            )
                            raise TypeError(msg) from None
            return val 
开发者ID:JarryShaw,项目名称:PyPCAPKit,代码行数:32,代码来源:compat.py


注:本文中的functools.cached_property方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。