• Home
  • Raw
  • Download

Lines Matching refs:BufferedIOBase

90 :class:`BufferedIOBase`.
253 example, :class:`BufferedIOBase` provides unoptimized implementations of
265 The :class:`BufferedIOBase` ABC extends :class:`IOBase`. It deals with
270 Another :class:`BufferedIOBase` subclass, :class:`BytesIO`, is a stream of
276 interface to a buffered raw stream (:class:`BufferedIOBase`). Finally,
296 :class:`BufferedIOBase` :class:`IOBase` ``detach``, ``read``, Inherited :class:`IOBase` …
515 .. class:: BufferedIOBase
533 A typical :class:`BufferedIOBase` implementation should not inherit from a
537 :class:`BufferedIOBase` provides or overrides these data attributes and
543 :class:`BufferedIOBase` deals with. This is not part of the
544 :class:`BufferedIOBase` API and may not exist on some implementations.
579 implementing your own buffering on top of a :class:`BufferedIOBase`
695 :class:`BufferedIOBase`. The buffer is discarded when the
702 from :class:`BufferedIOBase` and :class:`IOBase`:
729 In :class:`BytesIO`, this is the same as :meth:`~BufferedIOBase.read`.
736 In :class:`BytesIO`, this is the same as :meth:`~BufferedIOBase.readinto`.
744 :class:`BufferedIOBase`.
755 those from :class:`BufferedIOBase` and :class:`IOBase`:
782 :class:`BufferedIOBase`.
798 those from :class:`BufferedIOBase` and :class:`IOBase`:
832 It inherits :class:`BufferedIOBase`.
838 :class:`BufferedRWPair` implements all of :class:`BufferedIOBase`\'s methods
839 except for :meth:`~BufferedIOBase.detach`, which raises
878 The underlying binary buffer (a :class:`BufferedIOBase` instance) that
945 :class:`BufferedIOBase` buffered binary stream. It inherits