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.
1 parent 7d05cc3 commit 9f1c5f4Copy full SHA for 9f1c5f4
Doc/library/io.rst
@@ -70,7 +70,6 @@ In-memory text streams are also available as :class:`StringIO` objects::
70
might raise a :exc:`BlockingIOError` if the stream cannot perform the operation
71
immediately.
72
73
-
74
The text stream API is described in detail in the documentation of
75
:class:`TextIOBase`.
76
Modules/_io/textio.c
@@ -1996,7 +1996,6 @@ _io_TextIOWrapper_read_impl(textio *self, Py_ssize_t n)
1996
Py_DECREF(bytes);
1997
PyErr_SetString(PyExc_BlockingIOError, "Read returned None.");
1998
return NULL;
1999
2000
}
2001
2002
_PyIO_State *state = self->state;
0 commit comments