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

from . import MRUCache

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