~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/delta.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-06-04 10:55:31 UTC
  • mfrom: (1728.2.4 bzr.mbp.integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060604105531-0071ce43b2156b7a
(mbp) several small fixes

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."""
94
93
        def show_list(files):
95
94
            for item in files:
96
95
                path, fid, kind = item[:3]
142
141
            show_list(self.unchanged)
143
142
 
144
143
 
 
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