[Python-checkins] r67638 - python/branches/py3k/Doc/library/sys.rst

benjamin.peterson python-checkins at python.org
Sun Dec 7 16:07:02 CET 2008


Author: benjamin.peterson
Date: Sun Dec  7 16:07:02 2008
New Revision: 67638

Log:
remove extraneous 'text'

Modified:
   python/branches/py3k/Doc/library/sys.rst

Modified: python/branches/py3k/Doc/library/sys.rst
==============================================================================
--- python/branches/py3k/Doc/library/sys.rst	(original)
+++ python/branches/py3k/Doc/library/sys.rst	Sun Dec  7 16:07:02 2008
@@ -711,9 +711,9 @@
 
    .. 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__


More information about the Python-checkins mailing list