Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
_io.TextIOWrapper
1 parent 272da55 commit f1f3af7Copy full SHA for f1f3af7
1 file changed
Modules/_io/textio.c
@@ -56,10 +56,10 @@ textiobase_detach(PyObject *self, PyObject *Py_UNUSED(ignored))
56
}
57
58
PyDoc_STRVAR(textiobase_read_doc,
59
- "Read at most n characters from stream.\n"
+ "Read at most size characters from stream.\n"
60
"\n"
61
- "Read from underlying buffer until we have n characters or we hit EOF.\n"
62
- "If n is negative or omitted, read until EOF.\n"
+ "Read from underlying buffer until we have size characters or we hit EOF.\n"
+ "If size is negative or omitted, read until EOF.\n"
63
);
64
65
static PyObject *
0 commit comments