summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorKumar Aditya <59607654+kumaraditya303@users.noreply.github.com>2022-06-16 16:19:17 (GMT)
committerGitHub <noreply@github.com>2022-06-16 16:19:17 (GMT)
commit5163a253544bde85e64bdd2df5a3a974bbde2864 (patch)
tree76284ea40937aa8effbb244387eddf37b7e8df5b /Doc
parenta27f3ccea5d83917ef5d9d4c6b43d65e96c06ed3 (diff)
downloadcpython-5163a253544bde85e64bdd2df5a3a974bbde2864.zip
cpython-5163a253544bde85e64bdd2df5a3a974bbde2864.tar.gz
cpython-5163a253544bde85e64bdd2df5a3a974bbde2864.tar.bz2
gh-91877: Fix WriteTransport.get_write_buffer_{limits,size} docs (#92338) (#93805)
- 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>
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/asyncio-llapi-index.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/asyncio-llapi-index.rst b/Doc/library/asyncio-llapi-index.rst
index 0ab322a..0315d2e 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()
<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()