~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/delta.py

  • Committer: Martin Pool
  • Date: 2006-11-02 10:20:19 UTC
  • mfrom: (2114 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2119.
  • Revision ID: mbp@sourcefrog.net-20061102102019-9a5a02f485dff6f6
merge bzr.dev and reconcile several changes, also some test fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006 Canonical
 
1
# Copyright (C) 2005, 2006 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
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()