]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-91877: Fix WriteTransport.get_write_buffer_{limits,size} docs (#92338) (#93805)
authorKumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
Thu, 16 Jun 2022 16:19:17 +0000 (21:49 +0530)
committerGitHub <noreply@github.com>
Thu, 16 Jun 2022 16:19:17 +0000 (18:19 +0200)
- Amend docs for WriteTransport.get_write_buffer_limits
- Add docs for WriteTransport.get_write_buffer_size

Co-authored-by: Sanket Shanbhag <TechieBoy@users.noreply.github.com>
Doc/library/asyncio-llapi-index.rst

index 0ab322af6dc72da6ccf63da0c10927821029a823..0315d2e3d37d952c52cea8a0c47daf47e482e05b 100644 (file)
@@ -349,6 +349,10 @@ pipes, etc).  Returned from methods like
 
     * - :meth:`transport.get_write_buffer_size()
         <WriteTransport.get_write_buffer_size>`
+      - Return the current size of the output buffer.
+
+    * - :meth:`transport.get_write_buffer_limits()
+        <WriteTransport.get_write_buffer_limits>`
       - Return high and low water marks for write flow control.
 
     * - :meth:`transport.set_write_buffer_limits()