Lines Matching refs:fileinput
2 Tests for fileinput module.
11 from fileinput import FileInput, hook_encoded
13 # The fileinput module has 2 interfaces: the FileInput class which does
15 # variable. We only test the FileInput class, since the other functions
16 # only provide a thin facade over FileInput.
50 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs)
61 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs)
80 fi = FileInput(files=(t1, t2, t3, t4, '-'), bufsize=bs)
94 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs)
105 fi = FileInput(files=(t1, t2, t3, t4), inplace=1, bufsize=bs)
113 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs)
128 fi = FileInput(files=(t1, t2, t3, t4))
149 fi = FileInput(files=(t1, t2))
163 fi = FileInput(files=unicode(t1, encoding))
173 fi = FileInput(files=(t1, t2))
187 fi = FileInput(mode="w")
188 self.fail("FileInput should reject invalid mode argument")
194 fi = FileInput(files=t1, mode="U")
203 fi = FileInput(inplace=1, openhook=lambda f,m: None)
204 self.fail("FileInput should raise if both inplace "
209 fi = FileInput(openhook=1)
210 self.fail("FileInput should check openhook for being callable")
215 fi = FileInput(files=t1, openhook=hook_encoded("rot13"))