projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5cb84ed
)
Add missing word ("thread") to sentence about call_soon_threadsafe.
author
Guido van Rossum
<guido@python.org>
Tue, 4 Feb 2014 21:49:34 +0000
(13:49 -0800)
committer
Guido van Rossum
<guido@python.org>
Tue, 4 Feb 2014 21:49:34 +0000
(13:49 -0800)
Doc/library/asyncio-dev.rst
patch
|
blob
|
history
diff --git
a/Doc/library/asyncio-dev.rst
b/Doc/library/asyncio-dev.rst
index 1e82474194c640f94c6360662725b1979747c273..686e49605315ac59784859115cfe74a86bb4811b 100644
(file)
--- 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())