##// END OF EJS Templates
revlog: improve docstring for findcommonmissing
Pierre-Yves David -
r15835:fa15869b default
parent child Browse files
Show More
@@ -403,13 +403,10 b' class revlog(object):'
403 403
404 404 def findcommonmissing(self, common=None, heads=None):
405 405 """Return a tuple of the ancestors of common and the ancestors of heads
406 that are not ancestors of common.
406 that are not ancestors of common. In revset terminology, we return the
407 tuple:
407 408
408 More specifically, the second element is a list of nodes N such that
409 every N satisfies the following constraints:
410
411 1. N is an ancestor of some node in 'heads'
412 2. N is not an ancestor of any node in 'common'
409 ::common, (::heads) - (::common)
413 410
414 411 The list is sorted by revision number, meaning it is
415 412 topologically sorted.
General Comments 0
You need to be logged in to leave comments. Login now