Lines Matching full:infile
40 """Returns the infile = ... line of code for the reader process.
45 'infile = _io.FileIO(sys.stdin.fileno(), "rb")')
82 writing a final newline and closing the infile pipe.
84 object named 'infile' and validate the result. This will be
101 'infile.close()'
147 'got = infile.{read_method_name}() ;'
187 """Returns the infile = ... line of code to make a BufferedReader."""
188 return ('infile = io.open(sys.stdin.fileno(), "rb") ;'
189 'import _io ;assert isinstance(infile, _io.BufferedReader)')
202 """Returns the infile = ... line of code to make a TextIOWrapper."""
203 return ('infile = io.open(sys.stdin.fileno(), "rt", newline=None) ;'
204 'import _io ;assert isinstance(infile, _io.TextIOWrapper)')