summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bench/from_iter-5-bytes_bound.py
blob: b793a3207e4311f658537e28efb7028226c657d6 (plain) (blame)
1
2
3
4
5
6
7
8
import bench

def test(num):
    for i in iter(range(num//10000)):
        l = [0] * 1000
        l2 = bytes(l)

bench.run(test)