[issue43096] Adding `read_into` method to `asyncio.StreamReader`

2021-09-27 Thread jakirkham
Change by jakirkham : -- versions: +Python 3.11 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue43096] Adding `read_into` method to `asyncio.StreamReader`

2021-02-01 Thread jakirkham
New submission from jakirkham : To allow reading into a provided buffer without copying, it would be useful to have a `read_into` method on `asyncio.StreamReader`, which takes a buffer supporting the buffer protocol and fills it. -- components: asyncio messages: 386114 nosy: asvetlov,