~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/delta.py

  • Committer: Alexander Belchenko
  • Date: 2008-02-06 15:33:12 UTC
  • mto: This revision was merged to the branch mainline in revision 3231.
  • Revision ID: bialix@ukr.net-20080206153312-qycs7u05d7fjtwqq
Ian's review

Show diffs side-by-side

added added

removed removed

Lines of Context:
211
211
    # mutter('start compare_trees')
212
212
 
213
213
    for (file_id, path, content_change, versioned, parent_id, name, kind,
214
 
         executable) in new_tree.iter_changes(old_tree, want_unchanged,
 
214
         executable) in new_tree._iter_changes(old_tree, want_unchanged,
215
215
            specific_files, extra_trees=extra_trees,
216
216
            require_versioned=require_versioned,
217
217
            want_unversioned=want_unversioned):
304
304
        """Report one change to a file
305
305
 
306
306
        :param file_id: The file_id of the file
307
 
        :param path: The old and new paths as generated by Tree.iter_changes.
 
307
        :param path: The old and new paths as generated by Tree._iter_changes.
308
308
        :param versioned: may be 'added', 'removed', 'unchanged', or
309
309
            'unversioned.
310
310
        :param renamed: may be True or False
311
311
        :param modified: may be 'created', 'deleted', 'kind changed',
312
312
            'modified' or 'unchanged'.
313
313
        :param exe_change: True if the execute bit has changed
314
 
        :param kind: A pair of file kinds, as generated by Tree.iter_changes.
 
314
        :param kind: A pair of file kinds, as generated by Tree._iter_changes.
315
315
            None indicates no file present.
316
316
        """
317
317
        if is_quiet():
375
375
    Further processing may be required to produce a human-readable output.
376
376
    Unfortunately, some tree-changing operations are very complex
377
377
    :change_iterator: an iterator or sequence of changes in the format
378
 
        generated by Tree.iter_changes
 
378
        generated by Tree._iter_changes
379
379
    :param reporter: The _ChangeReporter that will report the changes.
380
380
    """
381
381
    versioned_change_map = {