~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/textui.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-10-24 07:28:00 UTC
  • mfrom: (2929.1.2 workingtree)
  • Revision ID: pqm@pqm.ubuntu.com-20071024072800-p2qtv2632xrbrs02
(robertc) Use a dictionary to obtain stat caches rather than digging into the dirstate on every path. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
        kind_ch = '/'
26
26
    elif kind == 'symlink':
27
27
        kind_ch = '->'
28
 
    elif kind == 'file':
 
28
    else:
 
29
        assert kind == 'file', ("can't handle file of type %r" % kind)
29
30
        kind_ch = ''
30
 
    else:
31
 
        raise ValueError(kind)
32
31
 
33
 
    if len(state) != 1:
34
 
        raise ValueError(state)
 
32
    assert len(state) == 1
35
33
        
36
34
    if to_file is None:
37
35
        to_file = sys.stdout