Files
Pyarmor-Static-Unpack-1shot/tests/input/loadbuild_class.py
Michael Hansen 391ba6502d Migrate additional tests which previously didn't have reference source to
the new test system, including new reference source.
2019-10-07 17:06:08 -07:00

16 lines
180 B
Python

class C:
def foobar(self):
a = 1
class B(C):
def barfoo(self):
d = 1
class F(C, B):
def raboof(self):
e = 1
C.foobar()
F.raboof()
B.foobar()