django/tests/regressiontests/cache/liberal_backend.py

10 lines
215 B
Python
Raw Normal View History

from django.core.cache.backends.locmem import LocMemCache
class LiberalKeyValidationMixin(object):
def validate_key(self, key):
pass
class CacheClass(LiberalKeyValidationMixin, LocMemCache):
pass