]> granicus.if.org Git - python/commitdiff
Closes #22348: Rephrase asyncio.StreamWriter.drain() documentation
authorVictor Stinner <victor.stinner@gmail.com>
Fri, 28 Nov 2014 16:45:41 +0000 (17:45 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Fri, 28 Nov 2014 16:45:41 +0000 (17:45 +0100)
Patch written by Martin Richard.

Doc/library/asyncio-stream.rst
Misc/ACKS

index 348132a5b7b69ba272da24aab892cb23f505e240..3809d947d5cce5df0a4059bd7d0140dc235ec0c2 100644 (file)
@@ -170,16 +170,22 @@ StreamWriter
 
    .. method:: drain()
 
-      Wait until the write buffer of the underlying transport is flushed.
+      Let the write buffer of the underlying transport a chance to be flushed.
 
       The intended use is to write::
 
           w.write(data)
           yield from w.drain()
 
-      When the transport buffer is full (the protocol is paused), block until
-      the buffer is (partially) drained and the protocol is resumed. When there
-      is nothing to wait for, the yield-from continues immediately.
+      When the size of the transport buffer reaches the high-water limit (the
+      protocol is paused), block until the size of the buffer is drained down
+      to the low-water limit and the protocol is resumed. When there is nothing
+      to wait for, the yield-from continues immediately.
+
+      Yielding from :meth:`drain` gives the opportunity for the loop to
+      schedule the write operation and flush the buffer. It should especially
+      be used when a possibly large amount of data is written to the transport,
+      and the coroutine does not yield-from between calls to :meth:`write`.
 
       This method is a :ref:`coroutine <coroutine>`.
 
index 30b6a0ec22d9ef1e9b903c7a3d798bf6d9631b07..d4ec6592938951db4c5c4d30b31a5664ace0d4f6 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1125,6 +1125,7 @@ Francesco Ricciardi
 Tim Rice
 Jan Pieter Riegel
 Armin Rigo
+Martin Richard
 Arc Riley
 Nicholas Riley
 Jean-Claude Rimbault