~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/delta.py

[merge] bzr.dev 1821

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
            
91
91
 
92
92
    def show(self, to_file, show_ids=False, show_unchanged=False):
 
93
        """output this delta in status-like form to to_file."""
93
94
        def show_list(files):
94
95
            for item in files:
95
96
                path, fid, kind = item[:3]
141
142
            show_list(self.unchanged)
142
143
 
143
144
 
144
 
 
145
145
def compare_trees(old_tree, new_tree, want_unchanged=False, specific_files=None):
146
146
    """Describe changes from one tree to another.
147
147