django/tests/cache/liberal_backend.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
208 B
Python
Raw Normal View History

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