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

10 lines
563 B
Plaintext

'\nprint_to.py -- source test pattern for \'print >> ...\' statements\n\nThis source is part of the decompyle test suite.\n\ndecompyle is a Python byte-code decompiler\nSee http://www.goebel-consult.de/decompyle/ for download and\nfor further information\n' <EOL>
import sys <EOL>
print >> sys . stdout , 1 , 2 , 3 , 4 , 5 <EOL>
print >> sys . stdout , 1 , 2 , 3 , 4 , 5 , <EOL>
print >> sys . stdout <EOL>
print >> sys . stdout , 1 , 2 , 3 , 4 , 5 , <EOL>
print >> sys . stdout , 1 , 2 , 3 , 4 , 5 , <EOL>
print >> sys . stdout <EOL>
print >> sys . stdout <EOL>