Skip to content

Commit

Permalink
bpo-39815: add cached_property to all (GH-18726)
Browse files Browse the repository at this point in the history
Automerge-Triggered-By: @pablogsal
  • Loading branch information
hakancelikdev committed Mar 1, 2020
1 parent 0e89076 commit 217dce9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Lib/functools.py
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions Misc/ACKS
Expand Up @@ -369,6 +369,7 @@ Raúl Cumplido
Antonio Cuni
Brian Curtin
Jason Curtis
Hakan Celik
Paul Dagnelie
Lisandro Dalcin
Darren Dale
Expand Down

0 comments on commit 217dce9

Please sign in to comment.