• Home
  • Raw
  • Download

Lines Matching refs:IOBase

254       :meth:`~IOBase.readinto` and :meth:`~IOBase.readline`.
256 At the top of the I/O hierarchy is the abstract base class :class:`IOBase`. It
261 The :class:`RawIOBase` ABC extends :class:`IOBase`. It deals with the reading
265 The :class:`BufferedIOBase` ABC extends :class:`IOBase`. It deals with
273 The :class:`TextIOBase` ABC extends :class:`IOBase`. It deals with
289 :class:`IOBase` ``fileno``, ``seek``, ``close``, ``closed``, ``_…
294 :class:`RawIOBase` :class:`IOBase` ``readinto`` and Inherited :class:`IOBase` …
296 :class:`BufferedIOBase` :class:`IOBase` ``detach``, ``read``, Inherited :class:`IOBase` …
298 :class:`TextIOBase` :class:`IOBase` ``detach``, ``read``, Inherited :class:`IOBase` …
307 .. class:: IOBase
317 Even though :class:`IOBase` does not declare :meth:`read`
330 :class:`IOBase` (and its subclasses) supports the iterator protocol, meaning
331 that an :class:`IOBase` object can be iterated over yielding the lines in a
334 character strings). See :meth:`~IOBase.readline` below.
336 :class:`IOBase` is also a context manager and therefore supports the
343 :class:`IOBase` provides these data attributes and methods:
457 Prepare for object destruction. :class:`IOBase` provides a default
459 :meth:`~IOBase.close` method.
464 Base class for raw binary streams. It inherits :class:`IOBase`. There is no
473 :class:`IOBase`:
518 It inherits :class:`IOBase`. There is no public constructor.
538 methods in addition to those from :class:`IOBase`:
674 :class:`RawIOBase` and :class:`IOBase`:
696 :meth:`~IOBase.close` method is called.
702 from :class:`BufferedIOBase` and :class:`IOBase`:
755 those from :class:`BufferedIOBase` and :class:`IOBase`:
798 those from :class:`BufferedIOBase` and :class:`IOBase`:
855 interface to stream I/O. It inherits :class:`IOBase`. There is no public
859 methods in addition to those from :class:`IOBase`:
1008 addition to those from :class:`TextIOBase` and :class:`IOBase`:
1046 The text buffer is discarded when the :meth:`~IOBase.close` method is
1059 :class:`TextIOBase` and :class:`IOBase`: