~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/delta.py

Update argument order

Show diffs side-by-side

added added

removed removed

Lines of Context:
144
144
 
145
145
 
146
146
def compare_trees(old_tree, new_tree, want_unchanged=False, 
147
 
                  specific_files=None, require_versioned=False,
148
 
                  extra_trees=None):
 
147
                  specific_files=None, extra_trees=None, 
 
148
                  require_versioned=False):
149
149
    """Describe changes from one tree to another.
150
150
 
151
151
    Returns a TreeDelta with details of added, modified, renamed, and
163
163
        If true, only check for changes to specified names or
164
164
        files within them.  By default, unversioned files are ignored.
165
165
 
 
166
    extra_trees
 
167
        If non-None, a list of more trees to use for looking up file_ids from
 
168
        paths
 
169
 
166
170
    require_versioned
167
171
        If true, an all files are required to be versioned, and
168
172
        PathsNotVersionedError will be thrown if they are not.