summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bench/from_iter-7-bytearray_bound.py
blob: 72001a05c7ebc6bbaaa9978555f8303e0bc346e1 (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 = bytearray(l)

bench.run(test)