mirror of
https://github.com/pocketpy/pocketpy
synced 2026-06-21 16:07:10 +08: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)
|
|
|