##// END OF EJS Templates
help: clarify ancestors() and descendants() include given set (issue5594)...
Yuya Nishihara -
r32905:2851b24e default
parent child Browse files
Show More
@@ -247,7 +247,8 b' def _ancestors(repo, subset, x, followfi'
247 247
248 248 @predicate('ancestors(set)', safe=True)
249 249 def ancestors(repo, subset, x):
250 """Changesets that are ancestors of a changeset in set.
250 """Changesets that are ancestors of changesets in set, including the
251 given changesets themselves.
251 252 """
252 253 return _ancestors(repo, subset, x)
253 254
@@ -592,7 +593,8 b' def _descendants(repo, subset, x, follow'
592 593
593 594 @predicate('descendants(set)', safe=True)
594 595 def descendants(repo, subset, x):
595 """Changesets which are descendants of changesets in set.
596 """Changesets which are descendants of changesets in set, including the
597 given changesets themselves.
596 598 """
597 599 return _descendants(repo, subset, x)
598 600
General Comments 0
You need to be logged in to leave comments. Login now