diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2014-09-27 20:21:35 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2014-09-27 20:21:35 (GMT) |
commit | 3749404ba5968c5571d47bc8a984f008a7eb8f80 (patch) | |
tree | 90214113acdd1fa51e1648a43237e1cb7b754977 /Doc/library/asyncio-protocol.rst | |
parent | c5deed3a1497316d4aa2ac350048d0c770016bc7 (diff) | |
download | cpython-3749404ba5968c5571d47bc8a984f008a7eb8f80.zip cpython-3749404ba5968c5571d47bc8a984f008a7eb8f80.tar.gz cpython-3749404ba5968c5571d47bc8a984f008a7eb8f80.tar.bz2 |
Issue #22251: Fix ReST markup to avoid errors building docs.
Diffstat (limited to 'Doc/library/asyncio-protocol.rst')
-rw-r--r-- | Doc/library/asyncio-protocol.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/asyncio-protocol.rst b/Doc/library/asyncio-protocol.rst index 92b055a..4299a21 100644 --- a/Doc/library/asyncio-protocol.rst +++ b/Doc/library/asyncio-protocol.rst @@ -407,6 +407,7 @@ even more), and eventually :meth:`resume_writing` is called once when the buffer size reaches the low-water mark. .. note:: + If the buffer size equals the high-water mark, :meth:`pause_writing` is not called -- it must go strictly over. Conversely, :meth:`resume_writing` is called when the buffer size is @@ -415,6 +416,7 @@ buffer size reaches the low-water mark. mark is zero. .. note:: + On BSD systems (OS X, FreeBSD, etc.) flow control is not supported for :class:`DatagramProtocol`, because send failures caused by writing too many packets cannot be detected easily. The socket |