]> granicus.if.org Git - python/commitdiff
remove extraneous 'text'
authorBenjamin Peterson <benjamin@python.org>
Sun, 7 Dec 2008 15:07:02 +0000 (15:07 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sun, 7 Dec 2008 15:07:02 +0000 (15:07 +0000)
Doc/library/sys.rst

index e87b7e1f1f7957ba3d58683ec2c457d3cbd1ea7d..e5d17816fb6881ecebee02b0739bc02f50feea17 100644 (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__