Commit 8ae02fde authored by Jannis Leidel's avatar Jannis Leidel
Browse files

Added missing file forgotten in r17479.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17485 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 55aa285a
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
from django.core.cache.backends.locmem import LocMemCache


class CloseHookMixin(object):
    closed = False

    def close(self, **kwargs):
        self.closed = True

class CacheClass(CloseHookMixin, LocMemCache):
    pass