8000 Improve the io module documentation by geryogam · Pull Request #15099 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

Improve the io module documentation #15099

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Sep 11, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update io.rst
  • Loading branch information
geryogam authored Aug 24, 2019
commit f699e0f4d25b7853d7ef3f0c81e6fd1d2b63b3d3
2 changes: 1 addition & 1 deletion Doc/library/io.rst
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ The :class:`BufferedIOBase` ABC extends :class:`IOBase`. It deals with
buffering on a raw byte stream (:class:`RawIOBase`). Its subclasses,
:class:`BufferedWriter`, :class:`BufferedReader`, and :class:`BufferedRWPair`
buffer streams that are readable, writable, and both readable and writable, respectively.
:class:`BufferedRandom` provides a buffered interface to random access streams.
:class:`BufferedRandom` provides a buffered interface to seekable streams.
Another :class:`BufferedIOBase` subclass, :class:`BytesIO`, is a stream of
in-memory bytes.

Expand Down
0