remove extraneous 'text'

This commit is contained in:
Benjamin Peterson 2008-12-07 15:07:02 +00:00
parent 70997a9a83
commit 6485f247e4

View file

@ -711,9 +711,9 @@ always available.
.. note::
The standard streams are text 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')``.
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')``.
.. data:: __stdin__