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 960b928 commit 9572c1eCopy full SHA for 9572c1e
Modules/_io/textio.c
@@ -1684,7 +1684,7 @@ _io_TextIOWrapper_write_impl(textio *self, PyObject *text)
1684
self->pending_bytes = b;
1685
}
1686
else if (self->pending_bytes_count + bytes_len > self->chunk_size) {
1687
- // Prevent to concatinate more than chunk_size data.
+ // Prevent to concatenate more than chunk_size data.
1688
if (_textiowrapper_writeflush(self) < 0) {
1689
Py_DECREF(b);
1690
return NULL;
0 commit comments