D7358: perf: make `perfnodemap` use the new `index.get_rev` api if available
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Sat Nov 9 13:15:54 UTC 2019
marmoute updated this revision to Diff 17888.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D7358?vs=17859&id=17888
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D7358/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D7358
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
@@ -1629,7 +1629,11 @@
def setnodeget():
# probably not necessary, but for good measure
clearchangelog(unfi)
- nodeget[0] = makecl(unfi).nodemap.get
+ cl = makecl(unfi)
+ if util.safehasattr(cl.index, 'get_rev'):
+ nodeget[0] = cl.index.get_rev
+ else:
+ nodeget[0] = cl.nodemap.get
def d():
get = nodeget[0]
To: marmoute, #hg-reviewers, indygreg
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list