Files
Pyarmor-Static-Unpack-1shot/tests/tokenized/test_extendedPrint.txt
Michael Hansen 15da179173 Merge print nodes in the AST rather than attempting to manage it during
print statement output. Fixes numerous bugs with mangled print statements.
2019-10-09 14:20:46 -07:00

6 lines
171 B
Plaintext

import sys <EOL>
print >> sys . stdout , 'Hello World' <EOL>
print >> sys . stdout , 1 , 2 , 3 <EOL>
print >> sys . stdout , 1 , 2 , 3 , <EOL>
print >> sys . stdout <EOL>