pocketpy/benchmarks/function_1.py
2024-04-11 01:31:45 +08:00

12 lines
152 B
Python

class A:
def f(self, a, b, c):
pass
a = A()
for i in range(10000000):
a.f(1, 2, 3)
a.f(1, 2, 3)
a.f(1, 2, 3)
a.f(1, 2, 3)