[Python-checkins] cpython (merge 3.4 -> default): Merge asyncio doc English phrasing fix.

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


https://hg.python.org/cpython/rev/b2a57fe50712
changeset:   93358:b2a57fe50712
parent:      93355:769a217764f2
parent:      93357:4924b0ce72c0
user:        R David Murray <rdmurray at bitdance.com>
date:        Sun Nov 02 12:33:37 2014 -0500
summary:
  Merge asyncio doc English phrasing fix.

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 not guarantee on 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