コード例 #1
0
ファイル: printout_builders.py プロジェクト: Tantan4321/PyBud
def report_exec_time(function, time):
    return "Total time spent executing '{}' function: {}".format(function, best_duration(time))
コード例 #2
0
ファイル: printout_builders.py プロジェクト: Tantan4321/PyBud
def report_line_exec(line, count, total):
    return "Line {} executed {} times, total time spent executing: {}".format(line, count, best_duration(total))
コード例 #3
0
ファイル: printout_builders.py プロジェクト: Tantan4321/PyBud
def live_line(line, count, total):
    return "Line {} executed {} times, total time spent on line: {}, average time: {}".format(line, count, best_duration(total), best_duration(total / count))