~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/missing.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:
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