~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-10-15 16:32:29 UTC
  • mfrom: (1731.1.67 unique-root)
  • Revision ID: pqm@pqm.ubuntu.com-20061015163229-648b1f2ebe692136
New trees have unique root ids

Show diffs side-by-side

added added

removed removed

Lines of Context:
152
152
        want_unchanged=want_unchanged,
153
153
        specific_files=specific_files,
154
154
        extra_trees=extra_trees,
155
 
        require_versioned=require_versioned)
 
155
        require_versioned=require_versioned,
 
156
        include_root=False)
156
157
 
157
158
 
158
159
def _compare_trees(old_tree, new_tree, want_unchanged, specific_file_ids,
159
160
                   include_root):
160
161
 
161
162
    from osutils import is_inside_any
162
 
    
163
163
    old_inv = old_tree.inventory
164
164
    new_inv = new_tree.inventory
165
165
    delta = TreeDelta()