From d2f45d5b5d24c81a25fe316b7fe2ce12cbb776c0 Mon Sep 17 00:00:00 2001 From: Sanket Shanbhag Date: Tue, 14 Jun 2022 18:16:18 +0530 Subject: [PATCH] gh-91877: Fix WriteTransport.get_write_buffer_{limits,size} docs (#92338) - Amend docs for WriteTransport.get_write_buffer_limits - Add docs for WriteTransport.get_write_buffer_size --- Doc/library/asyncio-llapi-index.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Doc/library/asyncio-llapi-index.rst b/Doc/library/asyncio-llapi-index.rst index 0ab322af6dc72d..0315d2e3d37d95 100644 --- a/Doc/library/asyncio-llapi-index.rst +++ b/Doc/library/asyncio-llapi-index.rst @@ -349,6 +349,10 @@ pipes, etc). Returned from methods like * - :meth:`transport.get_write_buffer_size() ` + - Return the current size of the output buffer. + + * - :meth:`transport.get_write_buffer_limits() + ` - Return high and low water marks for write flow control. * - :meth:`transport.set_write_buffer_limits()