From: Guido van Rossum Date: Tue, 4 Feb 2014 21:49:34 +0000 (-0800) Subject: Add missing word ("thread") to sentence about call_soon_threadsafe. X-Git-Tag: v3.4.0rc1~88 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3c9bb69fa176bb6aed98c075be1e71285043bdce;p=thirdparty%2FPython%2Fcpython.git Add missing word ("thread") to sentence about call_soon_threadsafe. --- diff --git a/Doc/library/asyncio-dev.rst b/Doc/library/asyncio-dev.rst index 1e82474194c6..686e49605315 100644 --- a/Doc/library/asyncio-dev.rst +++ b/Doc/library/asyncio-dev.rst @@ -19,7 +19,7 @@ and the event loop executes the next task. 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())