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

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

bench.run(test)