summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-12-07 15:07:02 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-12-07 15:07:02 (GMT)
commit6485f247e44509536a0dfe173c47957cbadf04e1 (patch)
treee32817ba1b3bb3d4408dbcfae6d3cc608473b830 /Doc
parent70997a9a837483f9837079c01eaaa62dce45d1b3 (diff)
downloadcpython-6485f247e44509536a0dfe173c47957cbadf04e1.zip
cpython-6485f247e44509536a0dfe173c47957cbadf04e1.tar.gz
cpython-6485f247e44509536a0dfe173c47957cbadf04e1.tar.bz2
remove extraneous 'text'
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/sys.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst
index e87b7e1..e5d1781 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__