diff options
author | Hakan Çelik <hakancelik96@outlook.com> | 2020-03-02 00:01:34 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-01 13:01:34 -0800 |
commit | 217dce9ee6e3cf27a0cedbe1e4a6455776373ec2 (patch) | |
tree | 1f64d563a073f297910ffb1797ab9666535ff7ed /Lib/functools.py | |
parent | 0e89076247580ba0e570c4816f0e5628a7e36e83 (diff) | |
download | cpython-git-217dce9ee6e3cf27a0cedbe1e4a6455776373ec2.tar.gz |
bpo-39815: add cached_property to all (GH-18726)
Automerge-Triggered-By: @pablogsal
Diffstat (limited to 'Lib/functools.py')
-rw-r--r-- | Lib/functools.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/functools.py b/Lib/functools.py index 050bec8605..535fa046c1 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 |