mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
bpo-39815: add cached_property to all (GH-18726)
Automerge-Triggered-By: @pablogsal
This commit is contained in:
parent
0e89076247
commit
217dce9ee6
2 changed files with 3 additions and 1 deletions
|
@ -12,7 +12,8 @@
|
||||||
__all__ = ['update_wrapper', 'wraps', 'WRAPPER_ASSIGNMENTS', 'WRAPPER_UPDATES',
|
__all__ = ['update_wrapper', 'wraps', 'WRAPPER_ASSIGNMENTS', 'WRAPPER_UPDATES',
|
||||||
'total_ordering', 'cmp_to_key', 'lru_cache', 'reduce',
|
'total_ordering', 'cmp_to_key', 'lru_cache', 'reduce',
|
||||||
'TopologicalSorter', 'CycleError',
|
'TopologicalSorter', 'CycleError',
|
||||||
'partial', 'partialmethod', 'singledispatch', 'singledispatchmethod']
|
'partial', 'partialmethod', 'singledispatch', 'singledispatchmethod',
|
||||||
|
"cached_property"]
|
||||||
|
|
||||||
from abc import get_cache_token
|
from abc import get_cache_token
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
|
|
|
@ -369,6 +369,7 @@ Raúl Cumplido
|
||||||
Antonio Cuni
|
Antonio Cuni
|
||||||
Brian Curtin
|
Brian Curtin
|
||||||
Jason Curtis
|
Jason Curtis
|
||||||
|
Hakan Celik
|
||||||
Paul Dagnelie
|
Paul Dagnelie
|
||||||
Lisandro Dalcin
|
Lisandro Dalcin
|
||||||
Darren Dale
|
Darren Dale
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue