~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tree.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-08-14 07:41:17 UTC
  • mfrom: (3619.4.4 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20080814074117-x0zvzzv7y6mok8pz
(robertc) Improve the testing of InterTree.iter_changes and fix bugs
        found as a result (Robert Collins, Aaron Bentley)

Show diffs side-by-side

added added

removed removed

Lines of Context:
948
948
                self.source._comparison_data(from_entry, path)
949
949
            kind = (from_kind, None)
950
950
            executable = (from_executable, None)
951
 
            changed_content = True
 
951
            changed_content = from_kind is not None
952
952
            # the parent's path is necessarily known at this point.
953
953
            yield(file_id, (path, to_path), changed_content, versioned, parent,
954
954
                  name, kind, executable)