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 | |
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')
-rw-r--r-- | Doc/library/enum.rst | 2 | ||||
-rw-r--r-- | Doc/library/io.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index d3b838c..9b4f9b4 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 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. |