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

from . import LRUCache

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