96
92
def has_filename(self, filename):
97
93
return bool(self.inventory.path2id(filename))
100
96
# The only files returned by this are those from the version
101
97
entries = self.inventory.iter_entries()
102
98
# skip the root for compatability with the current apis.
106
100
for path, entry in entries:
107
101
yield path, 'V', entry.kind, entry.file_id, entry