diff options
author | Éric Araujo <aeric@mtlpy.org> | 2012-12-09 03:53:43 (GMT) |
---|---|---|
committer | Éric Araujo <aeric@mtlpy.org> | 2012-12-09 03:53:43 (GMT) |
commit | 3f7c0e403606f7e888442048ac71cb8f391e8d83 (patch) | |
tree | b9bd563ea0facf995a395d22b9c8ad043648ba5e /Doc/library/io.rst | |
parent | f93ed3fa67260fa0023a1360a37ab7e320550455 (diff) | |
parent | 24457c9ad375239aca9bd176284d1e4f181e02f4 (diff) | |
download | cpython-3f7c0e403606f7e888442048ac71cb8f391e8d83.zip cpython-3f7c0e403606f7e888442048ac71cb8f391e8d83.tar.gz cpython-3f7c0e403606f7e888442048ac71cb8f391e8d83.tar.bz2 |
Merge fixes for #13614, #13512 and #7719 from 3.2
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 810e56f..98e0358 100644 --- a/Doc/library/io.rst +++ b/Doc/library/io.rst @@ -232,7 +232,7 @@ I/O Base Classes Note that calling any method (even inquiries) on a closed stream is undefined. Implementations may raise :exc:`ValueError` in this case. - :class:`IOBase` (and its subclasses) support the iterator protocol, meaning + :class:`IOBase` (and its subclasses) supports the iterator protocol, meaning that an :class:`IOBase` object can be iterated over yielding the lines in a stream. Lines are defined slightly differently depending on whether the stream is a binary stream (yielding bytes), or a text stream (yielding |