##// END OF EJS Templates
performance: speedup computation of extinct revisions...
Pierre-Yves David -
r18277:a58260bc default
parent child Browse files
Show More
@@ -677,7 +677,7 b' def _computesuspendedset(repo):'
677 @cachefor('extinct')
677 @cachefor('extinct')
678 def _computeextinctset(repo):
678 def _computeextinctset(repo):
679 """the set of obsolete parents without non obsolete descendants"""
679 """the set of obsolete parents without non obsolete descendants"""
680 return set(repo.revs('obsolete() - obsolete()::unstable()'))
680 return getrevs(repo, 'obsolete') - getrevs(repo, 'suspended')
681
681
682
682
683 @cachefor('bumped')
683 @cachefor('bumped')
General Comments 0
You need to be logged in to leave comments. Login now