[Python-checkins] [3.8] bpo-39815: add cached_property to all (GH-18726) (GH-18728)

Pablo Galindo webhook-mailer at python.org
Sun Mar 1 19:08:33 EST 2020


https://github.com/python/cpython/commit/12b714391e485d0150b343b114999bae4a0d34dd
commit: 12b714391e485d0150b343b114999bae4a0d34dd
branch: 3.8
author: Pablo Galindo <Pablogsal at gmail.com>
committer: GitHub <noreply at github.com>
date: 2020-03-02T00:08:29Z
summary:

[3.8] bpo-39815: add cached_property to all (GH-18726) (GH-18728)

Automerge-Triggered-By: @pablogsal.
(cherry picked from commit 217dce9ee6e3cf27a0cedbe1e4a6455776373ec2)

Co-authored-by: Hakan Çelik <hakancelik96 at outlook.com>

files:
M Lib/functools.py
M Misc/ACKS

diff --git a/Lib/functools.py b/Lib/functools.py
index b41dea79083fc..4cde5f590cf29 100644
--- a/Lib/functools.py
+++ b/Lib/functools.py
@@ -11,7 +11,8 @@
 
 __all__ = ['update_wrapper', 'wraps', 'WRAPPER_ASSIGNMENTS', 'WRAPPER_UPDATES',
            'total_ordering', 'cmp_to_key', 'lru_cache', 'reduce', 'partial',
-           'partialmethod', 'singledispatch', 'singledispatchmethod']
+           'partialmethod', 'singledispatch', 'singledispatchmethod',
+           "cached_property"]
 
 from abc import get_cache_token
 from collections import namedtuple
diff --git a/Misc/ACKS b/Misc/ACKS
index 8fd4df5bf3f19..ef13d55e756bd 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -362,6 +362,7 @@ Tom Culliton
 Raúl Cumplido
 Antonio Cuni
 Brian Curtin
+Hakan Celik
 Paul Dagnelie
 Lisandro Dalcin
 Darren Dale



More information about the Python-checkins mailing list