Lines Matching refs:IOBase
188 :meth:`~IOBase.readinto` and :meth:`~IOBase.readline`.
190 At the top of the I/O hierarchy is the abstract base class :class:`IOBase`. It
195 The :class:`RawIOBase` ABC extends :class:`IOBase`. It deals with the reading
199 The :class:`BufferedIOBase` ABC extends :class:`IOBase`. It deals with
207 The :class:`TextIOBase` ABC extends :class:`IOBase`. It deals with
223 :class:`IOBase` ``fileno``, ``seek``, ``close``, ``closed``, ``_…
228 :class:`RawIOBase` :class:`IOBase` ``readinto`` and Inherited :class:`IOBase` …
230 :class:`BufferedIOBase` :class:`IOBase` ``detach``, ``read``, Inherited :class:`IOBase` …
232 :class:`TextIOBase` :class:`IOBase` ``detach``, ``read``, Inherited :class:`IOBase` …
241 .. class:: IOBase
251 Even though :class:`IOBase` does not declare :meth:`read`
264 :class:`IOBase` (and its subclasses) supports the iterator protocol, meaning
265 that an :class:`IOBase` object can be iterated over yielding the lines in a
268 character strings). See :meth:`~IOBase.readline` below.
270 :class:`IOBase` is also a context manager and therefore supports the
277 :class:`IOBase` provides these data attributes and methods:
388 Prepare for object destruction. :class:`IOBase` provides a default
390 :meth:`~IOBase.close` method.
395 Base class for raw binary streams. It inherits :class:`IOBase`. There is no
404 :class:`IOBase`:
449 It inherits :class:`IOBase`. There is no public constructor.
469 methods in addition to those from :class:`IOBase`:
605 :class:`RawIOBase` and :class:`IOBase`:
627 :meth:`~IOBase.close` method is called.
633 from :class:`BufferedIOBase` and :class:`IOBase`:
686 those from :class:`BufferedIOBase` and :class:`IOBase`:
729 those from :class:`BufferedIOBase` and :class:`IOBase`:
786 interface to stream I/O. It inherits :class:`IOBase`. There is no public
790 methods in addition to those from :class:`IOBase`:
934 addition to those from :class:`TextIOBase` and :class:`IOBase`:
972 The text buffer is discarded when the :meth:`~IOBase.close` method is
985 :class:`TextIOBase` and :class:`IOBase`: