diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2012-07-07 15:03:22 (GMT) |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2012-07-07 15:03:22 (GMT) |
commit | 109d57358e9078fb1139e2b7687d7e300ce4dcb4 (patch) | |
tree | a485bc26bf29cad1d4e8b9c13c82ae09cab8235e /Doc/library/io.rst | |
parent | af1adbeedd9717fa8cfd47b3fa248a8169d7ef8e (diff) | |
download | cpython-109d57358e9078fb1139e2b7687d7e300ce4dcb4.zip cpython-109d57358e9078fb1139e2b7687d7e300ce4dcb4.tar.gz cpython-109d57358e9078fb1139e2b7687d7e300ce4dcb4.tar.bz2 |
Issue #13248: io: Remove obsolete argument "max_buffer_size" of BufferedWriter and BufferedRWPair.
Diffstat (limited to 'Doc/library/io.rst')
-rw-r--r-- | Doc/library/io.rst | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Doc/library/io.rst b/Doc/library/io.rst index 1d3d702..dd98a46 100644 --- a/Doc/library/io.rst +++ b/Doc/library/io.rst @@ -604,8 +604,6 @@ than raw I/O does. *raw* stream. If the *buffer_size* is not given, it defaults to :data:`DEFAULT_BUFFER_SIZE`. - A third argument, *max_buffer_size*, is supported, but unused and deprecated. - :class:`BufferedWriter` provides or overrides these methods in addition to those from :class:`BufferedIOBase` and :class:`IOBase`: @@ -631,8 +629,6 @@ than raw I/O does. in the first argument. If the *buffer_size* is omitted it defaults to :data:`DEFAULT_BUFFER_SIZE`. - A third argument, *max_buffer_size*, is supported, but unused and deprecated. - :class:`BufferedRandom` is capable of anything :class:`BufferedReader` or :class:`BufferedWriter` can do. @@ -647,9 +643,6 @@ than raw I/O does. writeable respectively. If the *buffer_size* is omitted it defaults to :data:`DEFAULT_BUFFER_SIZE`. - A fourth argument, *max_buffer_size*, is supported, but unused and - deprecated. - :class:`BufferedRWPair` implements all of :class:`BufferedIOBase`\'s methods except for :meth:`~BufferedIOBase.detach`, which raises :exc:`UnsupportedOperation`. |