mirror of
https://github.com/python/cpython.git
synced 2025-10-03 05:35:59 +00:00
[3.11] gh-95691: Doc BufferedWriter and BufferedReader (GH-95703) (#97947)
gh-95691: Doc BufferedWriter and BufferedReader (GH-95703)
(cherry picked from commit 0d68879104
)
Co-authored-by: 180909 <734461790@qq.com>
Co-authored-by: 180909 <734461790@qq.com>
This commit is contained in:
parent
0c387bf978
commit
1144cf64d8
1 changed files with 1 additions and 1 deletions
|
@ -272,7 +272,7 @@ to provide an interface to files in the machine's file system.
|
||||||
The :class:`BufferedIOBase` ABC extends :class:`IOBase`. It deals with
|
The :class:`BufferedIOBase` ABC extends :class:`IOBase`. It deals with
|
||||||
buffering on a raw binary stream (:class:`RawIOBase`). Its subclasses,
|
buffering on a raw binary stream (:class:`RawIOBase`). Its subclasses,
|
||||||
:class:`BufferedWriter`, :class:`BufferedReader`, and :class:`BufferedRWPair`
|
:class:`BufferedWriter`, :class:`BufferedReader`, and :class:`BufferedRWPair`
|
||||||
buffer raw binary streams that are readable, writable, and both readable and writable,
|
buffer raw binary streams that are writable, readable, and both readable and writable,
|
||||||
respectively. :class:`BufferedRandom` provides a buffered interface to seekable streams.
|
respectively. :class:`BufferedRandom` provides a buffered interface to seekable streams.
|
||||||
Another :class:`BufferedIOBase` subclass, :class:`BytesIO`, is a stream of
|
Another :class:`BufferedIOBase` subclass, :class:`BytesIO`, is a stream of
|
||||||
in-memory bytes.
|
in-memory bytes.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue