Skip to content

Commit 217dce9

Browse files
bpo-39815: add cached_property to all (GH-18726)
Automerge-Triggered-By: @pablogsal
1 parent 0e89076 commit 217dce9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Lib/functools.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
__all__ = ['update_wrapper', 'wraps', 'WRAPPER_ASSIGNMENTS', 'WRAPPER_UPDATES',
1313
'total_ordering', 'cmp_to_key', 'lru_cache', 'reduce',
1414
'TopologicalSorter', 'CycleError',
15-
'partial', 'partialmethod', 'singledispatch', 'singledispatchmethod']
15+
'partial', 'partialmethod', 'singledispatch', 'singledispatchmethod',
16+
"cached_property"]
1617

1718
from abc import get_cache_token
1819
from collections import namedtuple

Misc/ACKS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,7 @@ Raúl Cumplido
369369
Antonio Cuni
370370
Brian Curtin
371371
Jason Curtis
372+
Hakan Celik
372373
Paul Dagnelie
373374
Lisandro Dalcin
374375
Darren Dale

0 commit comments

Comments
 (0)