Show More
@@ -403,13 +403,10 b' class revlog(object):' | |||||
403 |
|
403 | |||
404 | def findcommonmissing(self, common=None, heads=None): |
|
404 | def findcommonmissing(self, common=None, heads=None): | |
405 | """Return a tuple of the ancestors of common and the ancestors of heads |
|
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 | ::common, (::heads) - (::common) | |
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' |
|
|||
413 |
|
410 | |||
414 | The list is sorted by revision number, meaning it is |
|
411 | The list is sorted by revision number, meaning it is | |
415 | topologically sorted. |
|
412 | topologically sorted. |
General Comments 0
You need to be logged in to leave comments.
Login now