Tim Peters | 877ab9b | 2006-05-26 16:53:04 +0000 | [diff] [blame] | 1 | from pybench import Test |
2 | |||||
3 | class EmptyTest(Test): | ||||
4 | """This is just here as a potential measure of repeatability.""" | ||||
5 | |||||
6 | version = 0.3 | ||||
7 | operations = 1 | ||||
8 | rounds = 60000 | ||||
9 | |||||
10 | def test(self): | ||||
11 | |||||
12 | l = [] | ||||
13 | for i in xrange(self.rounds): | ||||
14 | pass | ||||
15 | |||||
16 | |||||
17 | def calibrate(self): | ||||
18 | |||||
19 | l = [] | ||||
20 | |||||
21 | for i in xrange(self.rounds): | ||||
22 | pass |