In the current trunk I propose modifying line 549 to read as follows:
stat.strip_dirs().sort_stats("time").print_stats(80)
This will cause the profile output to be sorted by the "tottime"
column and limit the output to the first 80 lines. I follow a
methodology similar to Google's in that I attempt to shave as much
time from code. This statement will highlight code hot spots without
cluttering the profiler log. If the user wants to display all calls
they only need remove the "80" from the print_stats call.
What do you think?