Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/propcache/api.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

3 statements  

1"""Public API of the property caching library.""" 

2 

3from ._helpers import cached_property, under_cached_property 

4 

5__all__ = ( 

6 "cached_property", 

7 "under_cached_property", 

8)