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