Lines Matching refs:BufferedIOBase
90 :class:`BufferedIOBase`.
187 example, :class:`BufferedIOBase` provides unoptimized implementations of
199 The :class:`BufferedIOBase` ABC extends :class:`IOBase`. It deals with
204 Another :class:`BufferedIOBase` subclass, :class:`BytesIO`, is a stream of
210 interface to a buffered raw stream (:class:`BufferedIOBase`). Finally,
230 :class:`BufferedIOBase` :class:`IOBase` ``detach``, ``read``, Inherited :class:`IOBase` …
446 .. class:: BufferedIOBase
464 A typical :class:`BufferedIOBase` implementation should not inherit from a
468 :class:`BufferedIOBase` provides or overrides these data attributes and
474 :class:`BufferedIOBase` deals with. This is not part of the
475 :class:`BufferedIOBase` API and may not exist on some implementations.
510 implementing your own buffering on top of a :class:`BufferedIOBase`
626 :class:`BufferedIOBase`. The buffer is discarded when the
633 from :class:`BufferedIOBase` and :class:`IOBase`:
660 In :class:`BytesIO`, this is the same as :meth:`~BufferedIOBase.read`.
667 In :class:`BytesIO`, this is the same as :meth:`~BufferedIOBase.readinto`.
675 :class:`BufferedIOBase`.
686 those from :class:`BufferedIOBase` and :class:`IOBase`:
713 :class:`BufferedIOBase`.
729 those from :class:`BufferedIOBase` and :class:`IOBase`:
763 It inherits :class:`BufferedIOBase`.
769 :class:`BufferedRWPair` implements all of :class:`BufferedIOBase`\'s methods
770 except for :meth:`~BufferedIOBase.detach`, which raises
809 The underlying binary buffer (a :class:`BufferedIOBase` instance) that
876 :class:`BufferedIOBase` buffered binary stream. It inherits