Skip to content

Commit

Permalink
bloat-o-meter: convert to print() calls
Browse files Browse the repository at this point in the history
Signed-off-by: Bernhard Reutner-Fischer <[email protected]>
  • Loading branch information
aldot committed Feb 7, 2010
1 parent f16d7c4 commit eb25575
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/bloat-o-meter
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit eb25575

Please sign in to comment.