Show More
@@ -92,9 +92,22 b' def printrevision(rev):' | |||
|
92 | 92 | check_call(['hg', 'log', '--rev', str(rev), '--template', |
|
93 | 93 | '{desc|firstline}\n']) |
|
94 | 94 | |
|
95 | def idxwidth(nbidx): | |
|
96 | """return the max width of number used for index | |
|
97 | ||
|
98 | Yes, this is basically a log10.""" | |
|
99 | nbidx -= 1 # starts at 0 | |
|
100 | idxwidth = 0 | |
|
101 | while nbidx: | |
|
102 | idxwidth += 1 | |
|
103 | nbidx //= 10 | |
|
104 | if not idxwidth: | |
|
105 | idxwidth = 1 | |
|
106 | return idxwidth | |
|
107 | ||
|
95 | 108 | def printresult(idx, data, maxidx): |
|
96 | 109 | """print a line of result to stdout""" |
|
97 | mask = '%i) %s' | |
|
110 | mask = '%%0%ii) %%s' % idxwidth(maxidx) | |
|
98 | 111 | |
|
99 | 112 | out = ("wall %f comb %f user %f sys %f (best of %d)" |
|
100 | 113 | % (data['wall'], data['comb'], data['user'], |
General Comments 0
You need to be logged in to leave comments.
Login now