~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/delta.py

  • Committer: Robey Pointer
  • Date: 2006-07-01 19:03:33 UTC
  • mfrom: (1829 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1830.
  • Revision ID: robey@lag.net-20060701190333-f58465aec4bd3412
merge from bzr.dev

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