Skip to content

Commit 9572c1e

Browse files
committed
concatenate
1 parent 960b928 commit 9572c1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_io/textio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1684,7 +1684,7 @@ _io_TextIOWrapper_write_impl(textio *self, PyObject *text)
16841684
self->pending_bytes = b;
16851685
}
16861686
else if (self->pending_bytes_count + bytes_len > self->chunk_size) {
1687-
// Prevent to concatinate more than chunk_size data.
1687+
// Prevent to concatenate more than chunk_size data.
16881688
if (_textiowrapper_writeflush(self) < 0) {
16891689
Py_DECREF(b);
16901690
return NULL;

0 commit comments

Comments
 (0)