cpython/Modules/_io
Inada Naoki 01806d5beb
bpo-43260: io: Prevent large data remains in textio buffer. (GH-24592)
When very large data remains in TextIOWrapper, flush() may fail forever.

So prevent that data larger than chunk_size is remained in TextIOWrapper internal
buffer.

Co-Authored-By: Eryk Sun
2021-02-22 08:29:30 +09:00
..
clinic
_iomodule.c bpo-42208: Add _Py_GetLocaleEncoding() (GH-23050) 2020-10-31 01:02:09 +01:00
_iomodule.h bpo-42208: Add _Py_GetLocaleEncoding() (GH-23050) 2020-10-31 01:02:09 +01:00
bufferedio.c
bytesio.c
fileio.c
iobase.c
stringio.c
textio.c bpo-43260: io: Prevent large data remains in textio buffer. (GH-24592) 2021-02-22 08:29:30 +09:00
winconsoleio.c