~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/status.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-05-01 15:38:25 UTC
  • mfrom: (3395.1.1 ianc-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20080501153825-fbc1be2c4g22idz8
Minor docstring cleanups (Ian Clatworthy)

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
    :param show_ids: If set, includes each file's id.
61
61
    :param to_file: If set, write to this file (default stdout.)
62
62
    :param show_pending: If set, write pending merges.
63
 
    :param revision: If None the compare latest revision with working tree
64
 
        If not None it must be a RevisionSpec list.
65
 
        If one revision show compared it with working tree.
66
 
        If two revisions show status between first and second.
 
63
    :param revision: If None, compare latest revision with working tree
 
64
        If not None, it must be a RevisionSpec list.
 
65
        If one revision, compare with working tree.
 
66
        If two revisions, show status between first and second.
67
67
    :param short: If True, gives short SVN-style status lines.
68
68
    :param versioned: If True, only shows versioned files.
69
69
    """
70
70
    if show_unchanged is not None:
71
 
        warn("show_status_trees with show_unchanged has been deprecated "
 
71
        warn("show_tree_status with show_unchanged has been deprecated "
72
72
             "since bzrlib 0.9", DeprecationWarning, stacklevel=2)
73
73
 
74
74
    if to_file is None: