17 lines
173 B
Python
17 lines
173 B
Python
import bench
|
|
|
|
|
|
class Foo:
|
|
def __init__(self):
|
|
self.num = 20000000
|
|
|
|
|
|
def test(num):
|
|
o = Foo()
|
|
i = 0
|
|
while i < o.num:
|
|
i += 1
|
|
|
|
|
|
bench.run(test)
|