You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
210 B
13 lines
210 B
11 years ago
|
import bench
|
||
|
from _collections import namedtuple
|
||
|
|
||
|
T = namedtuple("Tup", "foo1 foo2 foo3 foo4 num")
|
||
|
|
||
|
def test(num):
|
||
|
t = T(0, 0, 0, 0, 20000000)
|
||
|
i = 0
|
||
|
while i < t.num:
|
||
|
i += 1
|
||
|
|
||
|
bench.run(test)
|