aboutsummaryrefslogtreecommitdiff
path: root/src/cachetools/lru.py
blob: 5d557b0b379a48a61e9e913988c870b3d5e4b9cc (plain)
1
2
3
4
5
6
7
import warnings

from . import LRUCache

warnings.warn(
    "cachetools.lru is deprecated, please use cachetools.LRUCache", DeprecationWarning
)