Files
Pyarmor-Static-Unpack-1shot/tests/tokenized/loadbuild_class.txt
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

25 lines
361 B
Plaintext

class C : <EOL>
<INDENT>
def foobar ( self ) : <EOL>
<INDENT>
a = 1 <EOL>
<OUTDENT>
<OUTDENT>
class B ( C ) : <EOL>
<INDENT>
def barfoo ( self ) : <EOL>
<INDENT>
d = 1 <EOL>
<OUTDENT>
<OUTDENT>
class F ( C , B ) : <EOL>
<INDENT>
def raboof ( self ) : <EOL>
<INDENT>
e = 1 <EOL>
<OUTDENT>
<OUTDENT>
C . foobar ( ) <EOL>
F . raboof ( ) <EOL>
B . foobar ( ) <EOL>