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 e25ed76 commit 1e40692Copy full SHA for 1e40692
Modules/_io/iobase.c
@@ -948,8 +948,8 @@ _io__RawIOBase_read_impl(PyObject *self, Py_ssize_t n)
948
if (bytes_filled < 0 || bytes_filled > n) {
949
Py_DECREF(b);
950
PyErr_Format(PyExc_ValueError,
951
- "readinto returned '%zd' oustside buffer size '%zd'",
952
- bytes_filled, n);
+ "readinto returned '%zd' oustside buffer size '%zd'",
+ bytes_filled, n);
953
return NULL;
954
}
955
0 commit comments