contrib/perf.py
changeset 18091 f7f8159caad3
parent 18080 486bfb200b3f
child 18236 819520ca213d
--- a/contrib/perf.py	Tue Dec 18 10:14:01 2012 -0800
+++ b/contrib/perf.py	Tue Dec 18 12:47:20 2012 -0800
@@ -82,7 +82,7 @@
     revs = repo.revs(revset)
     heads = repo.changelog.headrevs()
     def d():
-        s = set(repo.changelog.ancestors(heads))
+        s = repo.changelog.ancestors(heads)
         for rev in revs:
             rev in s
     timer(d)