Mercurial > hg-stable
changeset 33910:78f644fdaa2a
hgperf: update to conform with import style checks
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Tue, 22 Aug 2017 14:12:03 -0400 |
parents | 42bc7f39376b |
children | c9cf69d0c3b9 |
files | contrib/hgperf |
diffstat | 1 files changed, 11 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/contrib/hgperf Tue Aug 22 14:11:48 2017 -0400 +++ b/contrib/hgperf Tue Aug 22 14:12:03 2017 -0400 @@ -52,18 +52,20 @@ sys.stderr.write("(check your install and PYTHONPATH)\n") sys.exit(-1) -import mercurial.util -import mercurial.dispatch +from mercurial import ( + dispatch, + util, +) def timer(func, title=None): results = [] - begin = mercurial.util.timer() + begin = util.timer() count = 0 while True: ostart = os.times() - cstart = mercurial.util.timer() + cstart = util.timer() r = func() - cstop = mercurial.util.timer() + cstop = util.timer() ostop = os.times() count += 1 a, b = ostart, ostop @@ -80,7 +82,7 @@ sys.stderr.write("! wall %f comb %f user %f sys %f (best of %d)\n" % (m[0], m[1] + m[2], m[1], m[2], count)) -orgruncommand = mercurial.dispatch.runcommand +orgruncommand = dispatch.runcommand def runcommand(lui, repo, cmd, fullargs, ui, options, d, cmdpats, cmdoptions): ui.pushbuffer() @@ -90,9 +92,9 @@ ui.popbuffer() lui.popbuffer() -mercurial.dispatch.runcommand = runcommand +dispatch.runcommand = runcommand for fp in (sys.stdin, sys.stdout, sys.stderr): - mercurial.util.setbinary(fp) + util.setbinary(fp) -mercurial.dispatch.run() +dispatch.run()