[Python-checkins] cpython (3.4): Reflow paragraph.

r.david.murray python-checkins at python.org
Sun Nov 2 18:34:14 CET 2014


https://hg.python.org/cpython/rev/4924b0ce72c0
changeset:   93357:4924b0ce72c0
branch:      3.4
user:        R David Murray <rdmurray at bitdance.com>
date:        Sun Nov 02 12:32:26 2014 -0500
summary:
  Reflow paragraph.

files:
  Doc/library/asyncio-protocol.rst |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/library/asyncio-protocol.rst b/Doc/library/asyncio-protocol.rst
--- a/Doc/library/asyncio-protocol.rst
+++ b/Doc/library/asyncio-protocol.rst
@@ -439,8 +439,8 @@
 ------------------------
 
 Coroutines can be scheduled in a protocol method using :func:`async`, but there
-is no guarantee made about the execution order.  Protocols are not aware of coroutines
-created in protocol methods and so will not wait for them.
+is no guarantee made about the execution order.  Protocols are not aware of
+coroutines created in protocol methods and so will not wait for them.
 
 To have a reliable execution order, use :ref:`stream objects <asyncio-streams>` in a
 coroutine with ``yield from``. For example, the :meth:`StreamWriter.drain`

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list