summaryrefslogtreecommitdiff
path: root/Doc/library
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
parent0e8e78e15de645894ba44ce7c749dfeae80c2735 (diff)
downloadcpython-git-4dde587405fc57b4ceee6e2317d5d0c7cb0a66e6.tar.gz
whatsnew/3.5: Sync whatsnew with versionadded/versionchanged doc tags
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/enum.rst2
-rw-r--r--Doc/library/io.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst
index d3b838c01c..9b4f9b419f 100644
--- a/Doc/library/enum.rst
+++ b/Doc/library/enum.rst
@@ -466,7 +466,7 @@ The complete signature is::
:type: type to mix in to new Enum class.
-:start: number to start counting at if only names are passed in
+:start: number to start counting at if only names are passed in.
.. versionchanged:: 3.5
The *start* parameter was added.
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.