Paste #191400
1 2 3 4 5 6 7 | >>> import io >>> import sys >>> f= io.open(sys.stdout.fileno(), 'wt') >>> f <_io.TextIOWrapper name=1 encoding='UTF-8'> >>> f.buffer <_io.BufferedWriter name=1> |
1 2 3 4 5 6 7 | >>> import io >>> import sys >>> f= io.open(sys.stdout.fileno(), 'wt') >>> f <_io.TextIOWrapper name=1 encoding='UTF-8'> >>> f.buffer <_io.BufferedWriter name=1> |