Lines Matching defs:infile
40 """Returns the infile = ... line of code for the reader process.
45 'infile = io.FileIO(sys.stdin.fileno(), "rb")' %
83 writing a final newline and closing the infile pipe.
85 object named 'infile' and validate the result. This will be
102 'infile.close()'
148 'got = infile.{read_method_name}() ;'
195 """Returns the infile = ... line of code to make a BufferedReader."""
196 return ('import %s as io ;infile = io.open(sys.stdin.fileno(), "rb") ;'
197 'assert isinstance(infile, io.BufferedReader)' %
217 """Returns the infile = ... line of code to make a TextIOWrapper."""
219 'infile = io.open(sys.stdin.fileno(), encoding="utf-8", newline=None) ;'
220 'assert isinstance(infile, io.TextIOWrapper)' %