Return a snapshot list of all cache keys.
(self)
| 79 | return list(self._objects.values()) |
| 80 | |
| 81 | def list_keys(self): |
| 82 | """Return a snapshot list of all cache keys.""" |
| 83 | with self._rlock: |
| 84 | return list(self._objects.keys()) |
| 85 | |
| 86 | def get(self, obj): |
| 87 | """Look up the cached copy of obj. Returns None when absent.""" |
no outgoing calls