~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/status.py

  • Committer: John Arbash Meinel
  • Date: 2009-02-23 15:29:35 UTC
  • mfrom: (3943.7.7 bzr.code_style_cleanup)
  • mto: This revision was merged to the branch mainline in revision 4033.
  • Revision ID: john@arbash-meinel.com-20090223152935-oel9m92mwcc6nb4h
Merge the removal of all trailing whitespace, and resolve conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
                     versioned=False):
46
46
    """Display summary of changes.
47
47
 
48
 
    By default this compares the working tree to a previous revision. 
49
 
    If the revision argument is given, summarizes changes between the 
 
48
    By default this compares the working tree to a previous revision.
 
49
    If the revision argument is given, summarizes changes between the
50
50
    working tree and another, or between two revisions.
51
51
 
52
 
    The result is written out as Unicode and to_file should be able 
 
52
    The result is written out as Unicode and to_file should be able
53
53
    to encode that.
54
54
 
55
55
    If showing the status of a working tree, extra information is included
56
56
    about unknown files, conflicts, and pending merges.
57
57
 
58
 
    :param show_unchanged: Deprecated parameter. If set, includes unchanged 
 
58
    :param show_unchanged: Deprecated parameter. If set, includes unchanged
59
59
        files.
60
60
    :param specific_files: If set, a list of filenames whose status should be
61
 
        shown.  It is an error to give a filename that is not in the working 
 
61
        shown.  It is an error to give a filename that is not in the working
62
62
        tree, or in the working inventory or in the basis inventory.
63
63
    :param show_ids: If set, includes each file's id.
64
64
    :param to_file: If set, write to this file (default stdout.)
78
78
 
79
79
    if to_file is None:
80
80
        to_file = sys.stdout
81
 
    
 
81
 
82
82
    wt.lock_read()
83
83
    try:
84
84
        new_is_working_tree = True