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

from . import FIFOCache

warnings.warn(
    "cachetools.fifo is deprecated, please use cachetools.FIFOCache", DeprecationWarning
)