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

15 lines
201 B
Python

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