mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-19 19:10:17 +00:00
12 lines
152 B
Python
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)
|
|
|