diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-09-11 04:48:21 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-09-11 04:48:21 (GMT) |
commit | 4dde587405fc57b4ceee6e2317d5d0c7cb0a66e6 (patch) | |
tree | db2ee5dc805e57472d9f12628f3d1ddaf41faf99 /Doc/library/io.rst | |
parent | 0e8e78e15de645894ba44ce7c749dfeae80c2735 (diff) | |
download | cpython-4dde587405fc57b4ceee6e2317d5d0c7cb0a66e6.zip cpython-4dde587405fc57b4ceee6e2317d5d0c7cb0a66e6.tar.gz cpython-4dde587405fc57b4ceee6e2317d5d0c7cb0a66e6.tar.bz2 |
whatsnew/3.5: Sync whatsnew with versionadded/versionchanged doc tags
Diffstat (limited to 'Doc/library/io.rst')
-rw-r--r-- | Doc/library/io.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/io.rst b/Doc/library/io.rst index ba0d550..48fd226 100644 --- a/Doc/library/io.rst +++ b/Doc/library/io.rst @@ -487,7 +487,7 @@ I/O Base Classes .. method:: readinto1(b) - Read up to ``len(b)`` bytes into bytearray *b*, ,using at most one call to + Read up to ``len(b)`` bytes into bytearray *b*, using at most one call to the underlying raw stream's :meth:`~RawIOBase.read` (or :meth:`~RawIOBase.readinto`) method. Return the number of bytes read. |