12 lines
148 B
Python
12 lines
148 B
Python
import bench
|
|
|
|
|
|
def test(num):
|
|
for i in range(num // 40):
|
|
|
|
class X:
|
|
def __new__(cls):
|
|
pass
|
|
|
|
|
|
bench.run(test)
|