equal
deleted
inserted
replaced
405 """Generate the ancestors of 'revs' in reverse topological order. |
405 """Generate the ancestors of 'revs' in reverse topological order. |
406 Does not generate revs lower than stoprev. |
406 Does not generate revs lower than stoprev. |
407 |
407 |
408 See the documentation for ancestor.lazyancestors for more details.""" |
408 See the documentation for ancestor.lazyancestors for more details.""" |
409 |
409 |
410 return ancestor.lazyancestors(self, revs, stoprev=stoprev, |
410 return ancestor.lazyancestors(self.parentrevs, revs, stoprev=stoprev, |
411 inclusive=inclusive) |
411 inclusive=inclusive) |
412 |
412 |
413 def descendants(self, revs): |
413 def descendants(self, revs): |
414 """Generate the descendants of 'revs' in revision order. |
414 """Generate the descendants of 'revs' in revision order. |
415 |
415 |