blob: 9cb34ac3b073518a04616d58b994c67b32d7c2a1 [file] [log] [blame]
Tim Peters877ab9b2006-05-26 16:53:04 +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