summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Cache.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Bcfg2/Cache.py')
-rw-r--r--src/lib/Bcfg2/Cache.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/lib/Bcfg2/Cache.py b/src/lib/Bcfg2/Cache.py
deleted file mode 100644
index 842098eda..000000000
--- a/src/lib/Bcfg2/Cache.py
+++ /dev/null
@@ -1,14 +0,0 @@
-""" An implementation of a simple memory-backed cache. Right now this
-doesn't provide many features, but more (time-based expiration, etc.)
-can be added as necessary. """
-
-
-class Cache(dict):
- """ an implementation of a simple memory-backed cache """
-
- def expire(self, key=None):
- """ expire all items, or a specific item, from the cache """
- if key is None:
- self.clear()
- elif key in self:
- del self[key]