summaryrefslogtreecommitdiffstatshomepage
path: root/tests/internal_bench/var-3-local.py
blob: 182bb95f6ff74e3198397196fc60a10ac3863f64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import bench


def test(num):
    ITERS = 20000000
    i = 0
    while i < ITERS:
        i += 1


bench.run(test)