##// END OF EJS Templates
revlog: reuse 'descendant' implemention in 'isancestor'...
Boris Feld -
r38533:cc3543c8 default
parent child Browse files
Show More
@@ -1404,7 +1404,8 b' class revlog(object):'
1404
1404
1405 The implementation of this is trivial but the use of
1405 The implementation of this is trivial but the use of
1406 commonancestorsheads is not."""
1406 commonancestorsheads is not."""
1407 return a in self.commonancestorsheads(a, b)
1407 a, b = self.rev(a), self.rev(b)
1408 return self.descendant(a, b)
1408
1409
1409 def ancestor(self, a, b):
1410 def ancestor(self, a, b):
1410 """calculate the "best" common ancestor of nodes a and b"""
1411 """calculate the "best" common ancestor of nodes a and b"""
General Comments 0
You need to be logged in to leave comments. Login now