Sign in
android
/
platform
/
external
/
python
/
cachetools
/
refs/heads/android13-mainline-adservices-release
/
.
/
src
/
cachetools
/
lru.py
blob: 48ddb36f92ac09953c6f0cd86e090cab59614e2d [
file
] [
log
] [
blame
] [
edit
]
import
warnings
from
.
import
LRUCache
warnings
.
warn
(
"cachetools.lru is deprecated, please use cachetools.LRUCache"
,
DeprecationWarning
,
stacklevel
=
2
,
)