Searched refs:FileInput (Results 1 – 19 of 19) sorted by relevance
/third_party/python/Lib/test/ |
D | test_fileinput.py | 25 from fileinput import FileInput, hook_encoded 100 fi = FileInput(files=(t1, t2, t3, t4), encoding="utf-8") 111 fi = FileInput(files=(t1, t2, t3, t4), encoding="utf-8") 130 fi = FileInput(files=(t1, t2, t3, t4, '-'), encoding="utf-8") 144 fi = FileInput(files=(t1, t2, t3, t4), encoding="utf-8") 155 fi = FileInput(files=(t1, t2, t3, t4), inplace=1, encoding="utf-8") 163 fi = FileInput(files=(t1, t2, t3, t4), encoding="utf-8") 186 fi = FileInput(files=(t1, t2, t3, t4), encoding="utf-8") 204 fi = FileInput(files=(t1, t2), encoding="utf-8") 224 fi = FileInput(files=(t1, t2), encoding="utf-8") [all …]
|
D | test_genericalias.py | 23 from fileinput import FileInput 55 FileInput,
|
/third_party/python/Doc/library/ |
D | fileinput.rst | 32 :class:`FileInput`. If an I/O error occurs during opening or reading a file, 50 *openhook* parameter to :func:`fileinput.input` or :class:`FileInput()`. The 61 Create an instance of the :class:`FileInput` class. The instance will be used 64 constructor of the :class:`FileInput` class. 66 The :class:`FileInput` instance can be used as a context manager in the 144 .. class:: FileInput(files=None, inplace=False, backup='', *, mode='r', openhook=None, encoding=Non… 146 Class :class:`FileInput` is the implementation; its methods :meth:`filename`, 164 A :class:`FileInput` instance can be used as a context manager in the 168 with FileInput(files=('spam.txt', 'eggs.txt')) as input: 188 passed to :func:`fileinput.input` or to the :class:`FileInput` constructor, the [all …]
|
/third_party/python/Lib/ |
D | fileinput.py | 89 _state = FileInput(files, inplace, backup, mode=mode, openhook=openhook, 171 class FileInput: class
|
/third_party/python/Misc/NEWS.d/ |
D | 3.5.1rc1.rst | 313 fileinput.FileInput.readline() now returns b'' instead of '' at the end if 314 the FileInput was opened with binary mode. Patch by Ryosuke Ito.
|
D | 3.8.0a4.rst | 268 :class:`fileinput.FileInput` now uses the input file mode to correctly set
|
D | 3.6.0a1.rst | 2562 fileinput.FileInput.readline() now returns b'' instead of '' at the end if 2563 the FileInput was opened with binary mode. Patch by Ryosuke Ito.
|
D | 3.10.0b1.rst | 971 :class:`fileinput.FileInput`.
|
D | 3.8.0b1.rst | 820 :func:`fileinput.input` and :class:`fileinput.FileInput` **bufsize**
|
D | 3.5.0a1.rst | 3615 fileinput.FileInput now reads bytes from standard stream if binary mode is
|
D | 3.9.0a1.rst | 842 :class:`fileinput.FileInput` no longer accept ``'U'`` ("universal newline")
|
D | 3.7.0a1.rst | 1766 Fix ``fileinput.FileInput(files, inplace=True)`` when ``files`` contain
|
D | 3.8.0a1.rst | 3597 and :class:`fileinput.FileInput`.
|
/third_party/python/Doc/whatsnew/ |
D | 3.8.rst | 1652 :class:`wsgiref.util.FileWrapper` and :class:`fileinput.FileInput` have been 1795 :func:`fileinput.FileInput` which was ignored and deprecated since Python 3.6
|
D | 3.10.rst | 1089 :class:`fileinput.FileInput`.
|
D | 2.5.rst | 1350 the set of files, the :class:`FileInput` object's new :meth:`fileno` returns
|
/third_party/skia/third_party/externals/wuffs/release/c/ |
D | wuffs-v0.3.c | 9699 class FileInput : public Input { 9701 FileInput(FILE* f); 9709 FileInput(const FileInput&) = delete; 9710 FileInput& operator=(const FileInput&) = delete; 39206 FileInput::FileInput(FILE* f) : m_f(f) {} in FileInput() function 39209 FileInput::CopyIn(IOBuffer* dst) { in CopyIn()
|
/third_party/astc-encoder/Source/ |
D | wuffs-v0.3.c | 10406 class FileInput : public Input { 10408 FileInput(FILE* f); 10416 FileInput(const FileInput&) = delete; 10417 FileInput& operator=(const FileInput&) = delete; 44030 FileInput::FileInput(FILE* f) : m_f(f) {} in FileInput() function 44033 FileInput::CopyIn(IOBuffer* dst) { in CopyIn()
|
/third_party/python/Misc/ |
D | HISTORY | 306 - Issue #25510: fileinput.FileInput.readline() now returns b'' instead of '' 307 at the end if the FileInput was opened with binary mode. 1855 - Issue #21075: fileinput.FileInput now reads bytes from standard stream if 12618 - Issue #1286: Allow using fileinput.FileInput as a context manager. 19019 - Patch #1215184: FileInput now can be given an opening hook which can
|