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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-10-17 05:59:11 UTC
  • mfrom: (2903.2.11 commit)
  • Revision ID: pqm@pqm.ubuntu.com-20071017055911-jots6fwy20740n0i
commit produces (but does not yet use) a basis delta and avoids one iter_entries (mbp)

Show diffs side-by-side

added added

removed removed

Lines of Context:
429
429
                self.read_working_inventory()
430
430
        return added, ignored
431
431
 
432
 
    def update_to_one_parent_via_delta(self, new_revid, delta):
 
432
    def update_basis_by_delta(self, new_revid, delta):
433
433
        """Update the parents of this tree after a commit.
434
434
 
435
435
        This gives the tree one parent, with revision id new_revid. The
436
 
        inventory delta is applied ot the current basis tree to generate the
 
436
        inventory delta is applied to the current basis tree to generate the
437
437
        inventory for the parent new_revid, and all other parent trees are
438
438
        discarded.
439
439