mirror of
https://github.com/django/django.git
synced 2025-10-09 10:10:28 +00:00

* Removed trailing whitespace. * Added newline to EOF if missing. * Removed blank lines at EOF. * Removed some stray tabs.
9 lines
215 B
Python
9 lines
215 B
Python
from django.core.cache.backends.locmem import LocMemCache
|
|
|
|
|
|
class LiberalKeyValidationMixin(object):
|
|
def validate_key(self, key):
|
|
pass
|
|
|
|
class CacheClass(LiberalKeyValidationMixin, LocMemCache):
|
|
pass
|