# HG changeset patch # User Augie Fackler # Date 1503425523 14400 # Node ID 78f644fdaa2a9cc781d5f7116c024108590bd6fe # Parent 42bc7f39376bc5b6c96fe35b591229d7f2f4970a hgperf: update to conform with import style checks diff -r 42bc7f39376b -r 78f644fdaa2a contrib/hgperf --- 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()