|
@@ -29,7 +29,7 @@ class Query(object): |
|
|
|
|
|
|
|
|
class _AppCache(object): |
|
|
class _AppCache(object): |
|
|
def __init__(self): |
|
|
def __init__(self): |
|
|
self._data = {} |
|
|
|
|
|
|
|
|
super(_AppCache, self).__setattr__("_data", {}) |
|
|
|
|
|
|
|
|
def __getattr__(self, key): |
|
|
def __getattr__(self, key): |
|
|
return self._data[key] |
|
|
return self._data[key] |
|
|