Esempio n. 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
Esempio n. 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    
Esempio n. 3
0
 def average(self):
     total = 0
     for time in self.timed_run:
         total += time.total()
     return total / len(self.timed_run)
Esempio n. 4
0
 def total_timed(self):
     total = 0
     for time in self.timed_run:
         total += time.total()
     return total
Esempio n. 5
0
 def average(self):
     total = 0
     for time in self.timed_run:
         total += time.total()
     return total / len(self.timed_run)
Esempio n. 6
0
 def total_timed(self):
     total = 0
     for time in self.timed_run:
         total += time.total()
     return total