Files
Pyarmor-Static-Unpack-1shot/tests/input/load_method.py
2021-04-12 09:55:52 -07:00

16 lines
221 B
Python

class C:
def test1(self):
a = 1
def test2(self, x, y, z):
a = x * y + z
# @staticmethod -- TODO: Fix decorators
def testS():
a = 3
c = C()
c.test1()
c.test2(42, 5, -1)
C.testS()