Files
Pyarmor-Static-Unpack-1shot/tests/tokenized/test_dict.txt

7 lines
130 B
Plaintext
Raw Normal View History

x = { 'one' : 1 , 'two' : 2 } <EOL>
if x [ 'one' ] == 1 : <EOL>
<INDENT>
print 'Correct!' <EOL>
<OUTDENT>
x [ 'three' ] = 3 <EOL>