fix memory leak

This commit is contained in:
clowwindy 2014-10-31 15:14:28 +08:00
parent 03eecf1206
commit da11d02706

View file

@ -65,6 +65,7 @@ class LRUCache(collections.MutableMapping):
if self._store.__contains__(key):
if now - self._keys_to_last_time[key] > self.timeout:
del self._store[key]
del self._keys_to_last_time[key]
c += 1
del self._time_to_keys[least]
if c: