summaryrefslogtreecommitdiff
path: root/parts/django/tests/regressiontests/cache/liberal_backend.py
diff options
context:
space:
mode:
Diffstat (limited to 'parts/django/tests/regressiontests/cache/liberal_backend.py')
-rw-r--r--parts/django/tests/regressiontests/cache/liberal_backend.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/parts/django/tests/regressiontests/cache/liberal_backend.py b/parts/django/tests/regressiontests/cache/liberal_backend.py
deleted file mode 100644
index 5c7e312..0000000
--- a/parts/django/tests/regressiontests/cache/liberal_backend.py
+++ /dev/null
@@ -1,9 +0,0 @@
-from django.core.cache.backends.locmem import CacheClass as LocMemCacheClass
-
-class LiberalKeyValidationMixin(object):
- def validate_key(self, key):
- pass
-
-class CacheClass(LiberalKeyValidationMixin, LocMemCacheClass):
- pass
-