Source code for intranet.utils.cache

from django.core.cache.backends.dummy import DummyCache as DjangoDummyCache


[docs]class DummyCache(DjangoDummyCache):
[docs] def delete_pattern(self, key, version=None): pass