[Python-checkins] [3.11] gh-95691: Doc BufferedWriter and BufferedReader (GH-95703) (#97947)

nanjekyejoannah webhook-mailer at python.org
Wed Oct 5 20:22:01 EDT 2022


https://github.com/python/cpython/commit/1144cf64d8d668bd6a6a8eebe5790eb47f654ec5
commit: 1144cf64d8d668bd6a6a8eebe5790eb47f654ec5
branch: 3.11
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: nanjekyejoannah <33177550+nanjekyejoannah at users.noreply.github.com>
date: 2022-10-05T17:21:55-07:00
summary:

[3.11] gh-95691: Doc BufferedWriter and BufferedReader (GH-95703) (#97947)

gh-95691: Doc BufferedWriter and BufferedReader (GH-95703)
(cherry picked from commit 0d68879104dfb392d31e52e25dcb0661801a0249)

Co-authored-by: 180909 <734461790 at qq.com>

Co-authored-by: 180909 <734461790 at qq.com>

files:
M Doc/library/io.rst

diff --git a/Doc/library/io.rst b/Doc/library/io.rst
index 7ec990c3212a..8fd6b3537019 100644
--- a/Doc/library/io.rst
+++ b/Doc/library/io.rst
@@ -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
 buffering on a raw binary stream (:class:`RawIOBase`).  Its subclasses,
 :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.
 Another :class:`BufferedIOBase` subclass, :class:`BytesIO`, is a stream of
 in-memory bytes.



More information about the Python-checkins mailing list