From: Hakan Çelik Date: Sun, 1 Mar 2020 21:01:34 +0000 (+0300) Subject: bpo-39815: add cached_property to all (GH-18726) X-Git-Tag: v3.9.0a5~209 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=217dce9ee6e3cf27a0cedbe1e4a6455776373ec2;p=thirdparty%2FPython%2Fcpython.git bpo-39815: add cached_property to all (GH-18726) Automerge-Triggered-By: @pablogsal --- diff --git a/Lib/functools.py b/Lib/functools.py index 050bec860511..535fa046c18a 100644 --- a/Lib/functools.py +++ b/Lib/functools.py @@ -12,7 +12,8 @@ __all__ = ['update_wrapper', 'wraps', 'WRAPPER_ASSIGNMENTS', 'WRAPPER_UPDATES', 'total_ordering', 'cmp_to_key', 'lru_cache', 'reduce', 'TopologicalSorter', 'CycleError', - 'partial', 'partialmethod', 'singledispatch', 'singledispatchmethod'] + 'partial', 'partialmethod', 'singledispatch', 'singledispatchmethod', + "cached_property"] from abc import get_cache_token from collections import namedtuple diff --git a/Misc/ACKS b/Misc/ACKS index b36e2de4c2ba..5ec93a43755a 100644 --- a/Misc/ACKS +++ b/Misc/ACKS @@ -369,6 +369,7 @@ Raúl Cumplido Antonio Cuni Brian Curtin Jason Curtis +Hakan Celik Paul Dagnelie Lisandro Dalcin Darren Dale