121
122
"""Scan all files and remove entries where the cache entry is obsolete.
123
124
Obsolete entries are those where the file has been modified or deleted
124
125
since the entry was inserted.
126
129
prep = [(ce[1][3], path, ce) for (path, ce) in self._cache.iteritems()]
129
132
for inum, path, cache_entry in prep:
131
134
fp = _fingerprint(abspath)