summaryrefslogtreecommitdiff
path: root/Doc/library/io.rst
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-09-11 00:48:21 -0400
committerYury Selivanov <yselivanov@sprymix.com>2015-09-11 00:48:21 -0400
commit4dde587405fc57b4ceee6e2317d5d0c7cb0a66e6 (patch)
treedb2ee5dc805e57472d9f12628f3d1ddaf41faf99 /Doc/library/io.rst
parent0e8e78e15de645894ba44ce7c749dfeae80c2735 (diff)
downloadcpython-git-4dde587405fc57b4ceee6e2317d5d0c7cb0a66e6.tar.gz
whatsnew/3.5: Sync whatsnew with versionadded/versionchanged doc tags
Diffstat (limited to 'Doc/library/io.rst')
-rw-r--r--Doc/library/io.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/io.rst b/Doc/library/io.rst
index ba0d550410..48fd226130 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.