~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Robert Collins
  • Date: 2005-10-16 10:11:50 UTC
  • mto: This revision was merged to the branch mainline in revision 1459.
  • Revision ID: robertc@lifelesslap.robertcollins.net-20051016101150-c47ea7aac97aa585
add registration of suffixes, in preparation for ensuring iteration is regular

Show diffs side-by-side

added added

removed removed

Lines of Context:
1012
1012
                         from_branch=other,
1013
1013
                         revision=pullable_revs[-1])
1014
1014
            self.append_revision(*pullable_revs)
1015
 
    
1016
1015
 
1017
1016
    def commit(self, *args, **kw):
1018
1017
        from bzrlib.commit import Commit
1051
1050
            inv = self.get_revision_inventory(revision_id)
1052
1051
            return RevisionTree(self.weave_store, inv, revision_id)
1053
1052
 
1054
 
 
1055
1053
    def working_tree(self):
1056
1054
        """Return a `Tree` for the working copy."""
1057
1055
        from bzrlib.workingtree import WorkingTree