summaryrefslogtreecommitdiff
path: root/tests/internal_bench/class_create-5-staticmethod.py
blob: 0633556667544a1fd1c727a369d0ad0e9cae889c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import bench


def test(num):
    for i in range(num // 40):

        class X:
            @staticmethod
            def x():
                pass


bench.run(test)