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

from . import FIFOCache

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