[Python-checkins] bpo-33804: Document that the argument for io.TextIOBase.read() is optional (GH-7510)

Miss Islington (bot) webhook-mailer at python.org
Sat Jul 7 16:45:10 EDT 2018


https://github.com/python/cpython/commit/770937b6fd87af91390ac765f6a4c4767432cbc3
commit: 770937b6fd87af91390ac765f6a4c4767432cbc3
branch: 3.6
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-07-07T13:45:07-07:00
summary:

bpo-33804: Document that the argument for io.TextIOBase.read() is optional (GH-7510)

(cherry picked from commit b6bb77c2b8e83ba6cb845c7b512ac564276e854f)

Co-authored-by: Andrés Delfino <adelfino at gmail.com>

files:
M Doc/library/io.rst

diff --git a/Doc/library/io.rst b/Doc/library/io.rst
index 73b3efff0f49..28aac923cc37 100644
--- a/Doc/library/io.rst
+++ b/Doc/library/io.rst
@@ -790,7 +790,7 @@ Text I/O
 
       .. versionadded:: 3.1
 
-   .. method:: read(size)
+   .. method:: read(size=-1)
 
       Read and return at most *size* characters from the stream as a single
       :class:`str`.  If *size* is negative or ``None``, reads until EOF.



More information about the Python-checkins mailing list