~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree_4.py

  • Committer: Aaron Bentley
  • Date: 2007-07-12 17:06:11 UTC
  • mto: This revision was merged to the branch mainline in revision 2617.
  • Revision ID: abentley@panoramicfeedback.com-20070712170611-rj70hbjdk5titkqt
Aggressively cache trees, use dirstate.  re-mplement _add_parent.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1488
1488
            return parent_details[1]
1489
1489
        return None
1490
1490
 
 
1491
    def get_weave(self, file_id):
 
1492
        return self._repository.weave_store.get_weave(file_id,
 
1493
                self._repository.get_transaction())
 
1494
 
1491
1495
    def get_file(self, file_id):
1492
1496
        return StringIO(self.get_file_text(file_id))
1493
1497