~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/missing.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-02-23 17:00:36 UTC
  • mfrom: (4032.1.4 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20090223170036-3q1v68ewdt8i0to5
(Marius Kruger) Remove all trailing whitespace and add tests to
        enforce this.

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
    :param tip_revno: The revision number for the tip revision
91
91
    :param tip: The tip of mainline
92
92
    :param backward: Show oldest versions first when True, newest versions
93
 
        first when False. 
 
93
        first when False.
94
94
    :return: [(revno, revision_id)] for all revisions in ancestry that
95
95
        are left-hand parents from tip, or None if ancestry is None.
96
96
    """
129
129
    :param tip_revno: The revision number for the tip revision
130
130
    :param tip: The tip of the ancsetry
131
131
    :param backward: Show oldest versions first when True, newest versions
132
 
        first when False. 
 
132
        first when False.
133
133
    :return: [(revno, revision_id)] for all revisions in ancestry that
134
134
        are parents from tip, or None if ancestry is None.
135
135
    """
152
152
    parent_map = dict(((key, value) for key, value
153
153
                       in graph.iter_ancestry(mainline_revs[1:])
154
154
                       if value is not None))
155
 
    # filter out ghosts; merge_sort errors on ghosts. 
 
155
    # filter out ghosts; merge_sort errors on ghosts.
156
156
    # XXX: is this needed here ? -- vila080910
157
157
    rev_graph = _mod_repository._strip_NULL_ghosts(parent_map)
158
158
    # XXX: what if rev_graph is empty now ? -- vila080910