diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-18 10:54:54 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-18 10:54:54 (GMT) |
commit | e5ea1abf91f79b5eaa8ab638c28400285a8fabfd (patch) | |
tree | 4f175cf71355052ea6d04103d3466c927565ddf5 /Doc/library/io.rst | |
parent | e23c90c344f8a47ee1a4abf6f23d5d0b09cde22a (diff) | |
download | cpython-e5ea1abf91f79b5eaa8ab638c28400285a8fabfd.zip cpython-e5ea1abf91f79b5eaa8ab638c28400285a8fabfd.tar.gz cpython-e5ea1abf91f79b5eaa8ab638c28400285a8fabfd.tar.bz2 |
Issue #27036: Fixed formatting references to "bytes-like object" in plural.
Diffstat (limited to 'Doc/library/io.rst')
-rw-r--r-- | Doc/library/io.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/io.rst b/Doc/library/io.rst index cb3e9ed..cd81cf9 100644 --- a/Doc/library/io.rst +++ b/Doc/library/io.rst @@ -130,7 +130,7 @@ High-level Module Interface In-memory streams ^^^^^^^^^^^^^^^^^ -It is also possible to use a :class:`str` or :class:`bytes`-like object as a +It is also possible to use a :class:`str` or :term:`bytes-like object` as a file for both reading and writing. For strings :class:`StringIO` can be used like a file opened in text mode. :class:`BytesIO` can be used like a file opened in binary mode. Both provide full read-write capabilities with random |