Lines Matching refs:BufferedIOBase
39 :class:`BufferedIOBase` deals with buffering on a raw byte stream
50 (:class:`BufferedIOBase`). Finally, :class:`~io.StringIO` is an in-memory
175 :class:`BufferedIOBase`. The exact class varies: in read binary mode, it
411 .. class:: BufferedIOBase
429 A typical :class:`BufferedIOBase` implementation should not inherit from a
433 :class:`BufferedIOBase` provides or overrides these methods and attribute in
439 :class:`BufferedIOBase` deals with. This is not part of the
440 :class:`BufferedIOBase` API and may not exist on some implementations.
474 are implementing your own buffering on top of a :class:`BufferedIOBase`
553 :class:`BufferedIOBase`.
559 from :class:`BufferedIOBase` and :class:`IOBase`:
573 :class:`RawIOBase` object. It inherits :class:`BufferedIOBase`.
583 those from :class:`BufferedIOBase` and :class:`IOBase`:
606 :class:`RawIOBase` object. It inherits :class:`BufferedIOBase`.
623 those from :class:`BufferedIOBase` and :class:`IOBase`:
659 endpoint. It inherits :class:`BufferedIOBase`.
668 :class:`BufferedRWPair` implements all of :class:`BufferedIOBase`\'s methods
669 except for :meth:`~BufferedIOBase.detach`, which raises
709 The underlying binary buffer (a :class:`BufferedIOBase` instance) that
774 A buffered text stream over a :class:`BufferedIOBase` binary stream.