~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tree.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-05-20 15:12:32 UTC
  • mfrom: (5883.1.3 bzr.dev)
  • Revision ID: pqm@pqm.ubuntu.com-20110520151232-ktqtldpnygirg6zk
(jelmer) Some minor interface definition fixes. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
296
296
        """
297
297
        return osutils.split_lines(self.get_file_text(file_id, path))
298
298
 
299
 
    def get_file_sha1(self, file_id, path=None):
 
299
    def get_file_sha1(self, file_id, path=None, stat_value=None):
300
300
        """Return the SHA1 file for a file.
301
301
 
302
302
        :param file_id: The handle for this file.
303
303
        :param path: The path that this file can be found at.
304
304
            These must point to the same object.
 
305
        :param stat_value: Optional stat value for the object
305
306
        """
306
307
        raise NotImplementedError(self.get_file_sha1)
307
308