We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
_io.TextIOWrapper
1 parent 272da55 commit f1f3af7Copy full SHA for f1f3af7
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