Eryk Sun <[email protected]> added the comment: > it’s probably an even bigger problem on Windows, where writes might be > limited to 32767 bytes:
This check and workaround in _Py_write_impl doesn't affect disk files and pipes. It only affects character devices for which isatty is true, and really it's only concerned with console screen-buffer files. The workaround is not required in Windows 8.1+, so it can be removed in Python 3.9+. ---------- nosy: +eryksun _______________________________________ Python tracker <[email protected]> <https://bugs.python.org/issue41221> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
