~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/status.py

  • Committer: Martin Pool
  • Date: 2005-05-11 06:12:44 UTC
  • Revision ID: mbp@sourcefrog.net-20050511061244-b0eed343857f10d3
- remove dead code for cmd_compare_trees
- compare_trees new parameter want_unchanged to avoid allocating
  strings if not needed

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
        raise NotImplementedError("sorry, status on selected files is not implemented "
40
40
                                  "at the moment")
41
41
 
42
 
    delta = diff.compare_trees(old, new)
 
42
    delta = diff.compare_trees(old, new, want_unchanged=show_unchanged)
43
43
 
44
44
    delta.show(sys.stdout, show_ids=show_ids,
45
45
               show_unchanged=show_unchanged)