diff options
author | Hakan Çelik <hakancelik96@outlook.com> | 2020-03-01 21:01:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-01 21:01:34 (GMT) |
commit | 217dce9ee6e3cf27a0cedbe1e4a6455776373ec2 (patch) | |
tree | 1f64d563a073f297910ffb1797ab9666535ff7ed /Lib | |
parent | 0e89076247580ba0e570c4816f0e5628a7e36e83 (diff) | |
download | cpython-217dce9ee6e3cf27a0cedbe1e4a6455776373ec2.zip cpython-217dce9ee6e3cf27a0cedbe1e4a6455776373ec2.tar.gz cpython-217dce9ee6e3cf27a0cedbe1e4a6455776373ec2.tar.bz2 |
bpo-39815: add cached_property to all (GH-18726)
Automerge-Triggered-By: @pablogsal
Diffstat (limited to 'Lib')
-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 050bec8..535fa04 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 |