~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree.py

  • Committer: Aaron Bentley
  • Date: 2009-05-21 12:16:23 UTC
  • mto: This revision was merged to the branch mainline in revision 4386.
  • Revision ID: aaron@aaronbentley.com-20090521121623-e5cld07a69n1o1gg
Move MutableTree.get_file_with_stat to Tree.get_file_with_stat.

Show diffs side-by-side

added added

removed removed

Lines of Context:
446
446
 
447
447
    def get_file_with_stat(self, file_id, path=None, filtered=True,
448
448
        _fstat=os.fstat):
449
 
        """See MutableTree.get_file_with_stat."""
 
449
        """See Tree.get_file_with_stat."""
450
450
        if path is None:
451
451
            path = self.id2path(file_id)
452
452
        file_obj = self.get_file_byname(path, filtered=False)