Lines Matching refs:IOBase

166       :meth:`~IOBase.readinto` and :meth:`~IOBase.readline`.
168 At the top of the I/O hierarchy is the abstract base class :class:`IOBase`. It
173 The :class:`RawIOBase` ABC extends :class:`IOBase`. It deals with the reading
185 The :class:`TextIOBase` ABC, another subclass of :class:`IOBase`, deals with
201 :class:`IOBase` ``fileno``, ``seek``, ``close``, ``closed``, ``_…
206 :class:`RawIOBase` :class:`IOBase` ``readinto`` and Inherited :class:`IOBase` …
208 :class:`BufferedIOBase` :class:`IOBase` ``detach``, ``read``, Inherited :class:`IOBase` …
210 :class:`TextIOBase` :class:`IOBase` ``detach``, ``read``, Inherited :class:`IOBase` …
219 .. class:: IOBase
229 Even though :class:`IOBase` does not declare :meth:`read`, :meth:`readinto`,
244 :class:`IOBase` (and its subclasses) supports the iterator protocol, meaning
245 that an :class:`IOBase` object can be iterated over yielding the lines in a
248 character strings). See :meth:`~IOBase.readline` below.
250 :class:`IOBase` is also a context manager and therefore supports the
257 :class:`IOBase` provides these data attributes and methods:
368 Prepare for object destruction. :class:`IOBase` provides a default
370 :meth:`~IOBase.close` method.
375 Base class for raw binary I/O. It inherits :class:`IOBase`. There is no
382 In addition to the attributes and methods from :class:`IOBase`,
427 It inherits :class:`IOBase`. There is no public constructor.
447 addition to those from :class:`IOBase`:
541 :class:`IOBase` interface, too).
582 In addition to the attributes and methods from :class:`IOBase` and
606 :meth:`~IOBase.close` method is called.
612 from :class:`BufferedIOBase` and :class:`IOBase`:
663 those from :class:`BufferedIOBase` and :class:`IOBase`:
704 those from :class:`BufferedIOBase` and :class:`IOBase`:
761 Python's character strings are immutable. It inherits :class:`IOBase`.
765 methods in addition to those from :class:`IOBase`:
944 :meth:`~IOBase.close` method is called.