phases: micro-optimize newheads() to not create context objects
authorYuya Nishihara <yuya@tcha.org>
Sat, 14 Jul 2018 13:21:49 +0900
changeset 38683 ddd2165438cd
parent 38682 88efb7d6bcb6
child 38684 07b551a4df44
phases: micro-optimize newheads() to not create context objects
mercurial/phases.py
--- a/mercurial/phases.py	Sat Jul 14 13:19:18 2018 +0900
+++ b/mercurial/phases.py	Sat Jul 14 13:21:49 2018 +0900
@@ -665,9 +665,8 @@
     * `heads`: define the first subset
     * `roots`: define the second we subtract from the first"""
     repo = repo.unfiltered()
-    revset = repo.set('heads(::%ln - (%ln::%ln))', heads, roots, heads)
-    return [c.node() for c in revset]
-
+    revs = repo.revs('heads(::%ln - (%ln::%ln))', heads, roots, heads)
+    return pycompat.maplist(repo.changelog.node, revs)
 
 def newcommitphase(ui):
     """helper to get the target phase of new commit