/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/workingtree.py

  • Committer: Robert Collins
  • Date: 2006-07-25 06:19:05 UTC
  • mto: (1852.7.4 split-tree-source)
  • mto: This revision was merged to the branch mainline in revision 1890.
  • Revision ID: robertc@robertcollins.net-20060725061905-b1ab0530dcca0238
Add more test trees to the tree-implementations tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
459
459
    def get_file(self, file_id):
460
460
        return self.get_file_byname(self.id2path(file_id))
461
461
 
 
462
    def get_file_text(self, file_id):
 
463
        return self.get_file(file_id).read()
 
464
 
462
465
    def get_file_byname(self, filename):
463
466
        return file(self.abspath(filename), 'rb')
464
467