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.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/cachetools/fifo.py b/src/cachetools/fifo.py
new file mode 100644
index 0000000..ec072cd
--- /dev/null
+++ b/src/cachetools/fifo.py
@@ -0,0 +1,7 @@
+import warnings
+
+from . import FIFOCache
+
+warnings.warn(
+ "cachetools.fifo is deprecated, please use cachetools.FIFOCache", DeprecationWarning
+)