~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/delta.py

  • Committer: Aaron Bentley
  • Date: 2006-11-17 06:59:59 UTC
  • mto: This revision was merged to the branch mainline in revision 2162.
  • Revision ID: aaron.bentley@utoronto.ca-20061117065959-x81f1iu6uxar1iar
Make iter_changes private, so it can be changed freely

Show diffs side-by-side

added added

removed removed

Lines of Context:
163
163
    # mutter('start compare_trees')
164
164
 
165
165
    for (file_id, path, content_change, versioned, parent_id, name, kind,
166
 
         executable) in new_tree.iter_changes(old_tree, want_unchanged, 
167
 
                                              specific_file_ids):
 
166
         executable) in new_tree._iter_changes(old_tree, want_unchanged, 
 
167
                                               specific_file_ids):
168
168
        if not include_root and (None, None) == parent_id:
169
169
            continue
170
170
        assert kind[0] == kind[1] or None in kind