Sign in
chromium
/
external
/
googleappengine
/
python
/
master
/
.
/
lib
/
django-1.3
/
tests
/
regressiontests
/
cache
/
liberal_backend.py
blob: cc15b664659099e9597fb66839ce2c1d2fa7c7f5 [
file
] [
log
] [
blame
]
from
django
.
core
.
cache
.
backends
.
locmem
import
LocMemCache
class
LiberalKeyValidationMixin
(
object
):
def
validate_key
(
self
,
key
):
pass
class
CacheClass
(
LiberalKeyValidationMixin
,
LocMemCache
):
pass