To: python-checkins@python.org Subject: bpo-39815: add cached_property to all (GH-18726) Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 https://github.com/python/cpython/commit/217dce9ee6e3cf27a0cedbe1e4a64557763... 3ec2 commit: 217dce9ee6e3cf27a0cedbe1e4a6455776373ec2 branch: master author: Hakan =C3=87elik <hakancelik96@outlook.com> committer: GitHub <noreply@github.com> date: 2020-03-01T13:01:34-08:00 summary: bpo-39815: add cached_property to all (GH-18726) Automerge-Triggered-By: @pablogsal files: M Lib/functools.py M Misc/ACKS diff --git a/Lib/functools.py b/Lib/functools.py index 050bec8605117..535fa046c18a9 100644 --- a/Lib/functools.py +++ b/Lib/functools.py @@ -12,7 +12,8 @@ __all__ =3D ['update_wrapper', 'wraps', 'WRAPPER_ASSIGNMENTS', 'WRAPPER_UPDA= TES', 'total_ordering', 'cmp_to_key', 'lru_cache', 'reduce', 'TopologicalSorter', 'CycleError', - 'partial', 'partialmethod', 'singledispatch', 'singledispatchmeth= od'] + 'partial', 'partialmethod', 'singledispatch', 'singledispatchmeth= od', + "cached_property"] =20 from abc import get_cache_token from collections import namedtuple diff --git a/Misc/ACKS b/Misc/ACKS index b36e2de4c2ba5..5ec93a43755af 100644 --- a/Misc/ACKS +++ b/Misc/ACKS @@ -369,6 +369,7 @@ Ra=C3=BAl Cumplido Antonio Cuni Brian Curtin Jason Curtis +Hakan Celik Paul Dagnelie Lisandro Dalcin Darren Dale
participants (1)
-
Hakan Çelik