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