summaryrefslogtreecommitdiff
path: root/tests/internal_bench/class_instance-2.1-init_super.py
blob: 38bca5fef877a7bb1f299b27b87e4358174c479b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import bench


class X:
    def __init__(self):
        return super().__init__()


def test(num):
    for i in range(num // 5):
        x = X()


bench.run(test)