mirror of
https://github.com/django/django.git
synced 2025-07-19 19:25:26 +00:00
10 lines
216 B
Python
10 lines
216 B
Python
from django.core.cache.backends.locmem import LocMemCache
|
|
|
|
|
|
class LiberalKeyValidationMixin(object):
|
|
def validate_key(self, key):
|
|
pass
|
|
|
|
|
|
class CacheClass(LiberalKeyValidationMixin, LocMemCache):
|
|
pass
|