~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/versionedfile.py

  • Committer: Aaron Bentley
  • Date: 2007-06-23 05:14:25 UTC
  • mto: (2520.5.2 bzr.mpbundle)
  • mto: This revision was merged to the branch mainline in revision 2631.
  • Revision ID: aaron.bentley@utoronto.ca-20070623051425-xtdjn7z8xsaqah0f
Add get_sha1s to weaves

Show diffs side-by-side

added added

removed removed

Lines of Context:
311
311
        """
312
312
        raise NotImplementedError(self.get_sha1)
313
313
 
 
314
    def get_sha1s(self, version_ids):
 
315
        """Get the stored sha1 sums for the given revisions.
 
316
 
 
317
        :param version_ids: The names of the versions to lookup
 
318
        :return: a list of sha1s in order according to the version_ids
 
319
        """
 
320
        raise NotImplementedError(self.get_sha1)
 
321
 
314
322
    def get_suffixes(self):
315
323
        """Return the file suffixes associated with this versioned file."""
316
324
        raise NotImplementedError(self.get_suffixes)