]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
two edits
authorBenjamin Peterson <benjamin@python.org>
Tue, 12 May 2009 20:58:26 +0000 (20:58 +0000)
committerBenjamin Peterson <benjamin@python.org>
Tue, 12 May 2009 20:58:26 +0000 (20:58 +0000)
Doc/library/sys.rst

index ddd7e647a2744e1ad2f39c7456fdf03baa572ac8..05a98506f1c837fa071bbe1fa3a21aec0581fe35 100644 (file)
@@ -784,8 +784,8 @@ always available.
    The standard streams are in text mode by default.  To write or read binary
    data to these, use the underlying binary buffer.  For example, to write bytes
    to :data:`stdout`, use ``sys.stdout.buffer.write(b'abc')``.  Using
-   :meth:`io.TextIOWrapper.detach` streams can be made binary by default.  For
-   example, this function sets all the standard streams to binary: ::
+   :meth:`io.TextIOBase.detach` streams can be made binary by default.  For
+   example, this function sets all the standard streams to binary::
 
       def make_streams_binary():
           sys.stdin = sys.stdin.detach()