diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-02-07 19:42:48 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-02-07 19:42:48 +0100 |
commit | eb255752c14634f48c25e634fcf17b2479a160cc (patch) | |
tree | 69835f7cc69d18b3fdcbf3ac4a95942bd0cf8c74 /scripts | |
parent | f16d7c4bdf0d3e97760f9567ad449a968e2bc4eb (diff) | |
download | busybox-eb255752c14634f48c25e634fcf17b2479a160cc.tar.gz |
bloat-o-meter: convert to print() calls
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/bloat-o-meter | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/bloat-o-meter b/scripts/bloat-o-meter index acee6bea9..95cbbe6b8 100755 --- a/scripts/bloat-o-meter +++ b/scripts/bloat-o-meter @@ -123,16 +123,16 @@ delta.reverse() if flag_timing: end_t3 = int(time.time() * 1e9) -print "%-48s %7s %7s %+7s" % ("function", "old", "new", "delta") +print("%-48s %7s %7s %+7s" % ("function", "old", "new", "delta")) for d, n in delta: if d: old_sz = old.get(n, {}).get("size", "-") new_sz = new.get(n, {}).get("size", "-") - print "%-48s %7s %7s %+7d" % (n, old_sz, new_sz, d) -print "-"*78 + print("%-48s %7s %7s %+7d" % (n, old_sz, new_sz, d)) +print("-"*78) total="(add/remove: %s/%s grow/shrink: %s/%s up/down: %s/%s)%%sTotal: %s bytes"\ % (add, remove, grow, shrink, up, -down, up-down) -print total % (" "*(80-len(total))) +print(total % (" "*(80-len(total)))) if flag_timing: print("\n%d/%d; %d Parse origin/new; processing nsecs" % (end_t1-start_t1, end_t2-start_t2, end_t3-start_t3)) |