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

12 lines
288 B
Plaintext

import sys <EOL>
print >> sys . stdout , 'asdf' <EOL>
print 'xyz' <EOL>
print >> sys . stdout , 1 , 2 , 3 , 4 <EOL>
print 5 , 6 , 7 , 8 <EOL>
print >> sys . stdout <EOL>
print >> sys . stdout , 'Hello World' <EOL>
print >> sys . stdout <EOL>
print <EOL>
print 'Goodbye' <EOL>
print <EOL>