~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/status.py

remove all trailing whitespace from bzr source

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
257
257
def _raise_if_nonexistent(paths, old_tree, new_tree):
258
258
    """Complain if paths are not in either inventory or tree.
259
259
 
260
 
    It's OK with the files exist in either tree's inventory, or 
 
260
    It's OK with the files exist in either tree's inventory, or
261
261
    if they exist in the tree but are not versioned.
262
 
    
 
262
 
263
263
    This can be used by operations such as bzr status that can accept
264
264
    unknown or ignored files.
265
265
    """