diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-06 10:20:56 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-06 10:20:56 (GMT) |
commit | ed636a84b90f7ac5e9e396e3a026188ed53f9307 (patch) | |
tree | 15351f08d33cccff9585ed2ec841b3cd904fc121 | |
parent | 96bc04369ad20123e4764c7abb86769feabf64a2 (diff) | |
download | cpython-ed636a84b90f7ac5e9e396e3a026188ed53f9307.zip cpython-ed636a84b90f7ac5e9e396e3a026188ed53f9307.tar.gz cpython-ed636a84b90f7ac5e9e396e3a026188ed53f9307.tar.bz2 |
Specify which I/O ABC methods have implementations in the docs.
-rw-r--r-- | Doc/library/io.rst | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Doc/library/io.rst b/Doc/library/io.rst index 62eaf6d..7cab685 100644 --- a/Doc/library/io.rst +++ b/Doc/library/io.rst @@ -189,6 +189,25 @@ interface to a buffered raw stream (:class:`BufferedIOBase`). Finally, Argument names are not part of the specification, and only the arguments of :func:`open` are intended to be used as keyword arguments. +The following table summarizes the ABCs provided by the :mod:`io` module: + +========================= ================== ======================== ================================================== +ABC Inherits Stub Methods Mixin Methods and Properties +========================= ================== ======================== ================================================== +:class:`IOBase` ``fileno``, ``seek``, ``close``, ``closed``, ``__enter__``, + and ``truncate`` ``__exit__``, ``flush``, ``isatty``, ``__iter__``, + ``__next__``, ``readable``, ``readline``, + ``readlines``, ``seekable``, ``tell``, + ``writable``, and ``writelines`` +:class:`RawIOBase` :class:`IOBase` ``readinto`` and Inherited :class:`IOBase` methods, ``read``, + ``write`` and ``readall`` +:class:`BufferedIOBase` :class:`IOBase` ``detach``, ``read``, Inherited :class:`IOBase` methods, ``readinto`` + ``read1``, and ``write`` +:class:`TextIOBase` :class:`IOBase` ``detach``, ``read``, Inherited :class:`IOBase` methods, ``encoding``, + ``readline``, and ``errors``, and ``newlines`` + ``write`` +========================= ================== ======================== ================================================== + I/O Base Classes ^^^^^^^^^^^^^^^^ |