aboutsummaryrefslogtreecommitdiff
path: root/src/cachetools/fifo.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/cachetools/fifo.py')
-rw-r--r--src/cachetools/fifo.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/cachetools/fifo.py b/src/cachetools/fifo.py
new file mode 100644
index 0000000..a29b789
--- /dev/null
+++ b/src/cachetools/fifo.py
@@ -0,0 +1,9 @@
+import warnings
+
+from . import FIFOCache
+
+warnings.warn(
+ "cachetools.fifo is deprecated, please use cachetools.FIFOCache",
+ DeprecationWarning,
+ stacklevel=2,
+)