[issue33793] asyncio: _ProactorReadPipeTransport reads by chunk of 32 KiB: chunk size should be configurable

2021-09-21 Thread STINNER Victor
STINNER Victor added the comment: Nobody implemented the feature. I prefer to abandon my idea. -- resolution: -> rejected stage: -> resolved status: open -> closed ___ Python tracker __

[issue33793] asyncio: _ProactorReadPipeTransport reads by chunk of 32 KiB: chunk size should be configurable

2018-06-07 Thread STINNER Victor
New submission from STINNER Victor : _SelectorTransport has the class attribute: max_size = 256 * 1024 # Buffer size passed to recv(). But _ProactorReadPipeTransport uses an hardcoded chunk size of 32 KiB. It would be nice to allow to configure this size. By the way, _SelectorTransport.m