~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/status.py

  • Committer: Robert Collins
  • Date: 2005-09-12 12:39:58 UTC
  • mfrom: (1185.3.4)
  • mto: (1185.1.10)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: robertc@robertcollins.net-20050912123958-7982e808f291f439
merge up with head

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 single-line status for non-ignored working files.
 
24
    """Display status for non-ignored working files.
25
25
 
26
 
    show_all
27
 
        If true, show unmodified files too.
 
26
    show_unchanged
 
27
        If set, includes unchanged files.
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
 
32
35
    to_file
33
36
        If set, write to this file (default stdout.)
 
37
 
 
38
    show_pending
 
39
        If set, write pending merges.
34
40
    """
35
41
    import sys
36
42
    from bzrlib.delta import compare_trees