~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/delta.py

Indentation and documentation fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
161
161
 
162
162
    specific_files
163
163
        If true, only check for changes to specified names or
164
 
        files within them.  Any unversioned files given have no effect
165
 
        (but this might change in the future).
 
164
        files within them.  By default, unversioned files are ignored.
 
165
 
 
166
    require_versioned
 
167
        If true, an all files are required to be versioned, and
 
168
        PathsNotVersionedError will be thrown if they are not.
166
169
    """
167
170
    # NB: show_status depends on being able to pass in non-versioned files and
168
171
    # report them as unknown
194
197
 
195
198
    # TODO: Rather than iterating over the whole tree and then filtering, we
196
199
    # could diff just the specified files (if any) and their subtrees.  
197
 
    # Perhaps should take a list of file-ids instead?   Need to indicate any
198
 
    # ids or names which were not found in the trees.
199
200
 
200
201
    old_files = old_tree.list_files()
201
202
    new_files = new_tree.list_files()