~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

(jelmer) Move fileids_altered_by_revision_ids to VersionedFileRepository.
 (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
929
929
        parent_ids.discard(_mod_revision.NULL_REVISION)
930
930
        return parent_ids
931
931
 
932
 
    def fileids_altered_by_revision_ids(self, revision_ids):
933
 
        """Find the file ids and versions affected by revisions.
934
 
 
935
 
        :param revisions: an iterable containing revision ids.
936
 
        :return: a dictionary mapping altered file-ids to an iterable of
937
 
            revision_ids. Each altered file-ids has the exact revision_ids
938
 
            that altered it listed explicitly.
939
 
        """
940
 
        raise NotImplementedError(self.fileids_altered_by_revision_ids)
941
 
 
942
932
    def iter_files_bytes(self, desired_files):
943
933
        """Iterate through file versions.
944
934