blob: 63c566387c4ca450bcf42e5182fdf95cfe7c4cf6 [file] [log] [blame]
Steve Holden431a7632006-05-26 16:27:59 +00001from pybench import Test
2
3class 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