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

from . import RRCache

warnings.warn(
    "cachetools.rr is deprecated, please use cachetools.RRCache", DeprecationWarning
)