diff options
author | Georg Brandl <georg@python.org> | 2010-10-06 10:38:58 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-10-06 10:38:58 (GMT) |
commit | d098c3d94cd9bc74fa4d6f3a2752965e12860a03 (patch) | |
tree | b62f15f6b3e28c65c8c11c0949f100cc70db5181 /Doc/library/io.rst | |
parent | c755e90288ba6cdb38f0fbcce297fd7fbe35cfe6 (diff) | |
download | cpython-d098c3d94cd9bc74fa4d6f3a2752965e12860a03.zip cpython-d098c3d94cd9bc74fa4d6f3a2752965e12860a03.tar.gz cpython-d098c3d94cd9bc74fa4d6f3a2752965e12860a03.tar.bz2 |
Merged revisions 85274 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k
........
r85274 | georg.brandl | 2010-10-06 12:26:05 +0200 (Mi, 06 Okt 2010) | 1 line
Fix errors found by "make suspicious".
........
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 afb30a1..f0d1cf3 100644 --- a/Doc/library/io.rst +++ b/Doc/library/io.rst @@ -179,7 +179,7 @@ The :class:`BufferedIOBase` ABC deals with buffering on a raw byte stream :class:`BufferedReader`, and :class:`BufferedRWPair` buffer streams that are readable, writable, and both readable and writable. :class:`BufferedRandom` provides a buffered interface to random access streams. Another -:class`BufferedIOBase` subclass, :class:`BytesIO`, is a stream of in-memory +:class:`BufferedIOBase` subclass, :class:`BytesIO`, is a stream of in-memory bytes. The :class:`TextIOBase` ABC, another subclass of :class:`IOBase`, deals with |