Iterate over all keys in the cache dict, ordered by the most recent usage.
(self)
| 464 | return list(self) |
| 465 | |
| 466 | def iterkeys(self): |
| 467 | """Iterate over all keys in the cache dict, ordered by |
| 468 | the most recent usage. |
| 469 | """ |
| 470 | return reversed(tuple(self._queue)) |
| 471 | |
| 472 | __iter__ = iterkeys |
| 473 |