Skip to content

Commit dac5a02

Browse files
hakancelikdevpablogsal
authored andcommitted
[3.8] bpo-39815: add cached_property to all (GH-18726)
Automerge-Triggered-By: @pablogsal. (cherry picked from commit 217dce9) Co-authored-by: Hakan Çelik <[email protected]>
1 parent ce720d3 commit dac5a02

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
@@ -11,7 +11,8 @@
1111

1212
__all__ = ['update_wrapper', 'wraps', 'WRAPPER_ASSIGNMENTS', 'WRAPPER_UPDATES',
1313
'total_ordering', 'cmp_to_key', 'lru_cache', 'reduce', 'partial',
14-
'partialmethod', 'singledispatch', 'singledispatchmethod']
14+
'partialmethod', 'singledispatch', 'singledispatchmethod',
15+
"cached_property"]
1516

1617
from abc import get_cache_token
1718
from collections import namedtuple

Misc/ACKS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -362,6 +362,7 @@ Tom Culliton
362362
Raúl Cumplido
363363
Antonio Cuni
364364
Brian Curtin
365+
Hakan Celik
365366
Paul Dagnelie
366367
Lisandro Dalcin
367368
Darren Dale

0 commit comments

Comments
 (0)