/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/delta.py

  • Committer: Aaron Bentley
  • Date: 2006-10-12 03:19:14 UTC
  • mto: This revision was merged to the branch mainline in revision 2078.
  • Revision ID: aaron.bentley@utoronto.ca-20061012031914-036d95e1296a45c4
Changes from review comments

Show diffs side-by-side

added added

removed removed

Lines of Context:
146
146
@deprecated_function(zero_nine)
147
147
def compare_trees(old_tree, new_tree, want_unchanged=False,
148
148
                  specific_files=None, extra_trees=None,
149
 
                  require_versioned=False, include_root=False):
 
149
                  require_versioned=False):
150
150
    """compare_trees was deprecated in 0.10. Please see Tree.changes_from."""
151
151
    return new_tree.changes_from(old_tree,
152
152
        want_unchanged=want_unchanged,
153
153
        specific_files=specific_files,
154
154
        extra_trees=extra_trees,
155
155
        require_versioned=require_versioned,
156
 
        include_root=include_root)
 
156
        include_root=False)
157
157
 
158
158
 
159
159
def _compare_trees(old_tree, new_tree, want_unchanged, specific_file_ids,