~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/status.py

  • Committer: Lalo Martins
  • Date: 2005-09-09 11:37:44 UTC
  • mto: (1185.1.22)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: lalo@exoweb.net-20050909113744-22f870db25a9e5f5
getting rid of everything that calls the Branch constructor directly

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
                show_ids=False,
22
22
                to_file=None,
23
23
                show_pending=True):
24
 
    """Display status for non-ignored working files.
 
24
    """Display single-line status for non-ignored working files.
25
25
 
26
 
    show_unchanged
27
 
        If set, includes unchanged files.
 
26
    show_all
 
27
        If true, show unmodified files too.
28
28
 
29
29
    specific_files
30
30
        If set, only show the status of files in this list.
31
31
 
32
 
    show_ids
33
 
        If set, includes each file's id.
34
 
 
35
32
    to_file
36
33
        If set, write to this file (default stdout.)
37
 
 
38
 
    show_pending
39
 
        If set, write pending merges.
40
34
    """
41
35
    import sys
42
36
    from bzrlib.delta import compare_trees