mercurial/obsolete.py
changeset 18277 a58260bc101f
parent 18276 834ef7e70d0f
child 18365 4148414da120
--- a/mercurial/obsolete.py	Fri Jan 04 03:15:44 2013 +0100
+++ b/mercurial/obsolete.py	Fri Jan 04 03:16:08 2013 +0100
@@ -677,7 +677,7 @@
 @cachefor('extinct')
 def _computeextinctset(repo):
     """the set of obsolete parents without non obsolete descendants"""
-    return set(repo.revs('obsolete() - obsolete()::unstable()'))
+    return getrevs(repo, 'obsolete') - getrevs(repo, 'suspended')
 
 
 @cachefor('bumped')