~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: Vincent Ladeuil
  • Date: 2011-10-04 11:38:49 UTC
  • mfrom: (6184 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6185.
  • Revision ID: v.ladeuil+lp@free.fr-20111004113849-9os4pc4swnvdklxk
Merge trunk to resolve conflicts

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