~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revision.py

  • Committer: Matthieu Moy
  • Date: 2006-06-05 13:37:54 UTC
  • mto: This revision was merged to the branch mainline in revision 1857.
  • Revision ID: Matthieu.Moy@imag.fr-20060605133754-1fc6081371fb3c11
Implementation of -r revno:N:/path/to/branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
        reversed_result.reverse()
102
102
        return reversed_result
103
103
 
104
 
 
105
104
def is_ancestor(revision_id, candidate_id, branch):
106
105
    """Return true if candidate_id is an ancestor of revision_id.
107
106