From 7b292e4e2d4df10ca74fb60592552091bbfffa8a Mon Sep 17 00:00:00 2001 From: 180909 <734461790@qq.com> Date: Fri, 5 Aug 2022 16:26:49 +0800 Subject: [PATCH] gh-95691: Doc BufferedWriter and BufferedReader --- Doc/library/io.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/io.rst b/Doc/library/io.rst index 753e6c1e3b9b46..2861e5ccb45927 100644 --- a/Doc/library/io.rst +++ b/Doc/library/io.rst @@ -270,7 +270,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.