Lines Matching refs:BufferedIOBase

90 :class:`BufferedIOBase`.
165 example, :class:`BufferedIOBase` provides unoptimized implementations of
177 The :class:`BufferedIOBase` ABC deals with buffering on a raw byte stream
182 :class:`BufferedIOBase` subclass, :class:`BytesIO`, is a stream of in-memory
188 interface to a buffered raw stream (:class:`BufferedIOBase`). Finally,
208 :class:`BufferedIOBase` :class:`IOBase` ``detach``, ``read``, Inherited :class:`IOBase` …
424 .. class:: BufferedIOBase
442 A typical :class:`BufferedIOBase` implementation should not inherit from a
446 :class:`BufferedIOBase` provides or overrides these methods and attribute in
452 :class:`BufferedIOBase` deals with. This is not part of the
453 :class:`BufferedIOBase` API and may not exist on some implementations.
488 implementing your own buffering on top of a :class:`BufferedIOBase`
605 :class:`BufferedIOBase`. The buffer is discarded when the
612 from :class:`BufferedIOBase` and :class:`IOBase`:
639 In :class:`BytesIO`, this is the same as :meth:`~BufferedIOBase.read`.
646 In :class:`BytesIO`, this is the same as :meth:`~BufferedIOBase.readinto`.
653 :class:`RawIOBase` object. It inherits :class:`BufferedIOBase`.
663 those from :class:`BufferedIOBase` and :class:`IOBase`:
689 :class:`RawIOBase` object. It inherits :class:`BufferedIOBase`.
704 those from :class:`BufferedIOBase` and :class:`IOBase`:
737 endpoint. It inherits :class:`BufferedIOBase`.
743 :class:`BufferedRWPair` implements all of :class:`BufferedIOBase`\'s methods
744 except for :meth:`~BufferedIOBase.detach`, which raises
784 The underlying binary buffer (a :class:`BufferedIOBase` instance) that
850 A buffered text stream over a :class:`BufferedIOBase` binary stream.