bpo-39815: add cached_property to all (GH-18726)

Automerge-Triggered-By: @pablogsal
This commit is contained in:
Hakan Çelik 2020-03-02 00:01:34 +03:00 committed by GitHub
parent 0e89076247
commit 217dce9ee6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View 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

View file

@ -369,6 +369,7 @@ Raúl Cumplido
Antonio Cuni
Brian Curtin
Jason Curtis
Hakan Celik
Paul Dagnelie
Lisandro Dalcin
Darren Dale