]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-39815: add cached_property to all (GH-18726)
authorHakan Çelik <hakancelik96@outlook.com>
Sun, 1 Mar 2020 21:01:34 +0000 (00:01 +0300)
committerGitHub <noreply@github.com>
Sun, 1 Mar 2020 21:01:34 +0000 (13:01 -0800)
Automerge-Triggered-By: @pablogsal
Lib/functools.py
Misc/ACKS

index 050bec86051179448ad120df49a85cac94a9b4e0..535fa046c18a9eaa9bf3b4a50ba84787555184f1 100644 (file)
@@ -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
index b36e2de4c2ba58db193475d9bef2bc107115c509..5ec93a43755afd73c2391fcc5e6e9480e777345b 100644 (file)
--- 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