Commit a9b10a45 authored by Kirill Smelkov's avatar Kirill Smelkov

X benchlib/benchstat: Emit label:value info for several labels on one line, similary to go version

parent 32fc8327
......@@ -331,8 +331,7 @@ def benchstat(w, B, split=[]):
Bl = Bu[unit].bylabel(split)
for labkey in Bl:
for k,v in labkey:
emit('%s:%s' % (k, v))
emit(' '.join(['%s:%s' % (k, v) for k,v in labkey]))
Bn = Bl[labkey].byname()
for name in Bn:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment