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

from . import MRUCache

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