From: Benjamin Peterson Date: Sun, 7 Dec 2008 15:07:02 +0000 (+0000) Subject: remove extraneous 'text' X-Git-Tag: v3.1a1~730 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6485f247e44509536a0dfe173c47957cbadf04e1;p=python remove extraneous 'text' --- diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index e87b7e1f1f..e5d17816fb 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -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__