bpo-39815: add cached_property to all (GH-18726)
Automerge-Triggered-By: @pablogsal
This commit is contained in:
parent
0e89076247
commit
217dce9ee6
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue