diff -r 8d941af65caf -r 77b6da96e6f1 web/lib/django/core/cache/backends/dummy.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/lib/django/core/cache/backends/dummy.py Wed Jun 02 18:57:35 2010 +0200 @@ -0,0 +1,34 @@ +"Dummy cache backend" + +from django.core.cache.backends.base import BaseCache + +class CacheClass(BaseCache): + def __init__(self, *args, **kwargs): + pass + + def add(self, *args, **kwargs): + return True + + def get(self, key, default=None): + return default + + def set(self, *args, **kwargs): + pass + + def delete(self, *args, **kwargs): + pass + + def get_many(self, *args, **kwargs): + return {} + + def has_key(self, *args, **kwargs): + return False + + def set_many(self, *args, **kwargs): + pass + + def delete_many(self, *args, **kwargs): + pass + + def clear(self): + pass