~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/status.py

  • Committer: Aaron Bentley
  • Date: 2008-03-07 14:15:10 UTC
  • mto: This revision was merged to the branch mainline in revision 3262.
  • Revision ID: aaron@aaronbentley.com-20080307141510-j1w043r5ir8lap88
Make Tree.iter_changes a public method

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
            _raise_if_nonexistent(specific_files, old, new)
104
104
            want_unversioned = not versioned
105
105
            if short:
106
 
                changes = new._iter_changes(old, show_unchanged, specific_files,
 
106
                changes = new.iter_changes(old, show_unchanged, specific_files,
107
107
                    require_versioned=False, want_unversioned=want_unversioned)
108
108
                reporter = _mod_delta._ChangeReporter(output_file=to_file,
109
109
                    unversioned_filter=new.is_ignored)