summaryrefslogtreecommitdiffstatshomepage
path: root/tests/internal_bench/bytealloc-1-bytes_n.py
blob: 8b8120a53027522f85c1682a2e193f8482151ff3 (plain) (blame)
1
2
3
4
5
6
7
8
9
import bench


def test(num):
    for i in iter(range(num // 1000)):
        bytes(10000)


bench.run(test)