示例#1
0
    def get_times(self, index=None):
        times = []

        if index is None:
            for time in self.timed_run:
                times.append(time.total())
        else:
            times = self.timed_run[index]
        return times
示例#2
0
    def get_times(self,index=None):
        times = []

        if index is None:
            for time in self.timed_run:
                times.append(time.total())
        else:
            times = self.timed_run[index]
        return times    
示例#3
0
 def average(self):
     total = 0
     for time in self.timed_run:
         total += time.total()
     return total / len(self.timed_run)
示例#4
0
 def total_timed(self):
     total = 0
     for time in self.timed_run:
         total += time.total()
     return total
示例#5
0
 def average(self):
     total = 0
     for time in self.timed_run:
         total += time.total()
     return total / len(self.timed_run)
示例#6
0
 def total_timed(self):
     total = 0
     for time in self.timed_run:
         total += time.total()
     return total