From e0f8a3e9b96bbc2597f61be96993ef0c768a19fe Mon Sep 17 00:00:00 2001 From: Sergey Kolesnikov Date: Thu, 25 Nov 2021 20:15:24 +0300 Subject: [PATCH] Add missing 'await writer.drain()' call to example (GH-29162) Automerge-Triggered-By: GH:asvetlov --- Doc/library/asyncio-stream.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/Doc/library/asyncio-stream.rst b/Doc/library/asyncio-stream.rst index 95a8e4649beede..ecf178adcd377e 100644 --- a/Doc/library/asyncio-stream.rst +++ b/Doc/library/asyncio-stream.rst @@ -352,6 +352,7 @@ TCP echo client using the :func:`asyncio.open_connection` function:: print(f'Send: {message!r}') writer.write(message.encode()) + await writer.drain() data = await reader.read(100) print(f'Received: {data.decode()!r}')