[Python-checkins] r86896 - python/branches/py3k/Doc/library/io.rst
daniel.stutzbach
python-checkins at python.org
Tue Nov 30 18:49:54 CET 2010
Author: daniel.stutzbach
Date: Tue Nov 30 18:49:53 2010
New Revision: 86896
Log:
Fix typo: "ofbytes" should be "of bytes"
Modified:
python/branches/py3k/Doc/library/io.rst
Modified: python/branches/py3k/Doc/library/io.rst
==============================================================================
--- python/branches/py3k/Doc/library/io.rst (original)
+++ python/branches/py3k/Doc/library/io.rst Tue Nov 30 18:49:53 2010
@@ -361,9 +361,9 @@
.. method:: readinto(b)
- Read up to len(b) bytes into bytearray *b* and return the number ofbytes
- read. If the object is in non-blocking mode and no bytes are available,
- ``None`` is returned.
+ Read up to len(b) bytes into bytearray *b* and return the number
+ of bytes read. If the object is in non-blocking mode and no
+ bytes are available, ``None`` is returned.
.. method:: write(b)
More information about the Python-checkins
mailing list