~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/delta.py

Remove all uses of compare_trees and replace with Tree.changes_from throughout bzrlib.

Show diffs side-by-side

added added

removed removed

Lines of Context:
143
143
            show_list(self.unchanged)
144
144
 
145
145
 
146
 
def compare_trees(old_tree, new_tree, want_unchanged=False, 
147
 
                  specific_files=None, extra_trees=None, 
 
146
def compare_trees(old_tree, new_tree, want_unchanged=False,
 
147
                  specific_files=None, extra_trees=None,
148
148
                  require_versioned=False):
149
149
    """Describe changes from one tree to another.
150
150