/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/versionedfile.py

  • Committer: Robert Collins
  • Date: 2008-07-01 03:49:54 UTC
  • mto: This revision was merged to the branch mainline in revision 3515.
  • Revision ID: robertc@robertcollins.net-20080701034954-5r0c28cocphgv6td
Review feedback.

Show diffs side-by-side

added added

removed removed

Lines of Context:
551
551
 
552
552
    def iter_lines_added_or_present_in_keys(self, keys, pb=None):
553
553
        self.calls.append(("iter_lines_added_or_present_in_keys", copy(keys)))
554
 
        return self._backing_vf.iter_lines_added_or_present_in_keys(keys)
 
554
        return self._backing_vf.iter_lines_added_or_present_in_keys(keys, pb=pb)
555
555
 
556
556
    def keys(self):
557
557
        self.calls.append(("keys",))
838
838
 
839
839
        :param keys: The names of the keys to lookup
840
840
        :return: a dict from key to sha1 digest. Keys of texts which are not
841
 
            present in the store are not not present in the returned
 
841
            present in the store are not present in the returned
842
842
            dictionary.
843
843
        """
844
844
        raise NotImplementedError(self.get_sha1s)