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

from . import RRCache

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