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