diff options
author | Inada Naoki <songofacandy@gmail.com> | 2021-03-25 07:23:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-25 07:23:50 (GMT) |
commit | b045cdaf341f80b7d1e4804b932b6e415600c2e1 (patch) | |
tree | b66a2137f3392ecc4a518c0affbf5802c03325a2 /Doc/library/io.rst | |
parent | df9ade9beb86935963f8ae47d9377578399ab6d2 (diff) | |
download | cpython-b045cdaf341f80b7d1e4804b932b6e415600c2e1.zip cpython-b045cdaf341f80b7d1e4804b932b6e415600c2e1.tar.gz cpython-b045cdaf341f80b7d1e4804b932b6e415600c2e1.tar.bz2 |
Doc: io: Remove "In-memory streams" section (GH-24927)
Diffstat (limited to 'Doc/library/io.rst')
-rw-r--r-- | Doc/library/io.rst | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Doc/library/io.rst b/Doc/library/io.rst index aecbec5..96e02e8 100644 --- a/Doc/library/io.rst +++ b/Doc/library/io.rst @@ -155,16 +155,6 @@ High-level Module Interface when an unsupported operation is called on a stream. -In-memory streams -^^^^^^^^^^^^^^^^^ - -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 -access. - - .. seealso:: :mod:`sys` |