/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/missing.py

  • Committer: Marius Kruger
  • Date: 2009-01-01 22:08:22 UTC
  • mto: (3969.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 3970.
  • Revision ID: amanic@gmail.com-20090101220822-iopb8ag69ie4auno
* fix some indentation anomalies in cmd_missing
* note that the `missing` revision filters are inclusive
* some minor white space cleanups
* add some param docstrings for missing.find_unmerged

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
    :param include_merges: Show mainline revisions only if False,
68
68
        all revisions otherwise.
69
69
    :param backward: Show oldest versions first when True, newest versions
70
 
        first when False. 
 
70
        first when False.
 
71
    :param local_revid_range: Revision-id range for filtering local_branch
 
72
        revisions (lower bound, upper bound)
 
73
    :param remote_revid_range: Revision-id range for filtering remote_branch
 
74
        revisions (lower bound, upper bound)
71
75
 
72
76
    :return: A list of [(revno, revision_id)] for the mainline revisions on
73
77
        each side.
80
84
                local_branch, remote_branch, restrict=restrict,
81
85
                include_merges=include_merges, backward=backward,
82
86
                local_revid_range=local_revid_range,
83
 
                remote_revid_range= remote_revid_range)
 
87
                remote_revid_range=remote_revid_range)
84
88
        finally:
85
89
            remote_branch.unlock()
86
90
    finally: