Lines Matching refs:buffered
74 Binary I/O (also called *buffered I/O*) expects
114 An int containing the default buffer size used by the module's buffered I/O
181 provides a buffered interface to random access streams. Another
187 from strings. :class:`TextIOWrapper`, which extends it, is a buffered text
188 interface to a buffered raw stream (:class:`BufferedIOBase`). Finally,
656 The buffered data can then be returned directly on subsequent reads.
679 If at least one byte is buffered, only buffered bytes are returned.
721 A buffered interface to random access streams. It inherits
735 A buffered I/O object combining two unidirectional :class:`RawIOBase`
850 A buffered text stream over a :class:`BufferedIOBase` binary stream.
895 not to be buffered: any data written on the :class:`TextIOWrapper`
1002 single byte, buffered I/O hides any inefficiency in calling and executing the
1005 unbuffered disk I/O can be as fast as buffered I/O. The bottom line, however,
1006 is that buffered I/O offers predictable performance regardless of the platform
1008 buffered I/O rather than unbuffered I/O for binary data.
1029 Binary buffered objects (instances of :class:`BufferedReader`,
1039 Binary buffered objects (instances of :class:`BufferedReader`,
1043 re-enter a buffered object which it is already accessing, a :exc:`RuntimeError`
1045 buffered object.
1048 will wrap a buffered object inside a :class:`TextIOWrapper`. This includes