D7359: perf: make `perfphasesremote` use the new `index.has_node` api
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Fri Nov 8 16:29:10 UTC 2019
marmoute created this revision.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.
REVISION SUMMARY
(If available)
REPOSITORY
rHG Mercurial
REVISION DETAIL
https://phab.mercurial-scm.org/D7359
AFFECTED FILES
contrib/perf.py
CHANGE DETAILS
diff --git a/contrib/perf.py b/contrib/perf.py
--- a/contrib/perf.py
+++ b/contrib/perf.py
@@ -1421,13 +1421,15 @@
else:
ui.statusnoi18n(b'publishing: no\n')
- nodemap = repo.changelog.nodemap
+ has_node = getattr(repo.changelog.index, 'has_node', None)
+ if has_node is None:
+ has_node = repo.changelog.nodemap.__contains__
nonpublishroots = 0
for nhex, phase in remotephases.iteritems():
if nhex == b'publishing': # ignore data related to publish option
continue
node = bin(nhex)
- if node in nodemap and int(phase):
+ if has_node(node) and int(phase):
nonpublishroots += 1
ui.statusnoi18n(b'number of roots: %d\n' % len(remotephases))
ui.statusnoi18n(b'number of known non public roots: %d\n' % nonpublishroots)
To: marmoute, #hg-reviewers
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list