7 lines
148 B
Python
7 lines
148 B
Python
import warnings
|
|
|
|
from . import FIFOCache
|
|
|
|
warnings.warn(
|
|
"cachetools.fifo is deprecated, please use cachetools.FIFOCache", DeprecationWarning
|
|
)
|