##// END OF EJS Templates
dagop: comment why revancestors() doesn't heapify input revs at once...
Yuya Nishihara -
r32998:c7da57bb default
parent child Browse files
Show More
@@ -26,6 +26,9 b' def _genrevancestors(repo, revs, followf'
26 26 else:
27 27 cut = None
28 28 cl = repo.changelog
29
30 # load input revs lazily to heap so earlier revisions can be yielded
31 # without fully computing the input revs
29 32 revs.sort(reverse=True)
30 33 irevs = iter(revs)
31 34 h = []
General Comments 0
You need to be logged in to leave comments. Login now