771
776
"""See VersionedFile.get_suffixes()."""
772
777
return [DATA_SUFFIX, INDEX_SUFFIX]
774
780
def has_ghost(self, version_id):
775
781
"""True if there is a ghost reference in the file to version_id."""
777
783
if self.has_version(version_id):
779
785
# optimisable if needed by memoising the _ghosts set.
781
787
for node, parents in items:
788
793
def insert_data_stream(self, (format, data_list, reader_callable)):