1import bench 2 3 4def test(num): 5 for i in iter(range(num // 1000)): 6 bytes(10000) 7 8 9bench.run(test) 10