[Python-checkins] cpython: Add missing word ("thread") to sentence about call_soon_threadsafe.

guido.van.rossum python-checkins at python.org
Tue Feb 4 22:49:44 CET 2014


http://hg.python.org/cpython/rev/e0bcafbffe7e
changeset:   88963:e0bcafbffe7e
user:        Guido van Rossum <guido at python.org>
date:        Tue Feb 04 13:49:34 2014 -0800
summary:
  Add missing word ("thread") to sentence about call_soon_threadsafe.

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


diff --git a/Doc/library/asyncio-dev.rst b/Doc/library/asyncio-dev.rst
--- a/Doc/library/asyncio-dev.rst
+++ b/Doc/library/asyncio-dev.rst
@@ -19,7 +19,7 @@
 
 To schedule a callback from a different thread, the
 :meth:`BaseEventLoop.call_soon_threadsafe` method should be used. Example to
-schedule a coroutine from a different::
+schedule a coroutine from a different thread::
 
     loop.call_soon_threadsafe(asyncio.async, coro_func())
 

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


More information about the Python-checkins mailing list