1import bench
2
3
4def test(num):
5    for i in iter(range(num // 10000)):
6        l = [0] * 1000
7        l2 = bytes(l)
8
9
10bench.run(test)
11