Lines Matching refs:FileInput
5 import fileinput
6 for line in fileinput.input():
32 setting the mode parameter to input() or FileInput.__init__().
48 Class FileInput is the implementation; its methods filename(),
57 passed to input() or to the FileInput constructor, the file is moved
71 input() function and the FileInput() class to override the default
85 "isfirstline","isstdin","FileInput"]
95 Create an instance of the FileInput class. The instance will be used
98 along to the constructor of the FileInput class.
103 _state = FileInput(files, inplace, backup, bufsize, mode, openhook)
184 class FileInput:
185 """class FileInput([files[, inplace[, backup[, mode[, openhook]]]]])
187 Class FileInput is the implementation of the module; its methods
224 raise ValueError("FileInput opening mode must be one of "
228 raise ValueError("FileInput cannot use an opening hook in inplace mode")
230 raise ValueError("FileInput openhook must be callable")