bytealloc-1-bytes_n.py 106 B

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