diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-01-09 00:32:02 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-01-09 00:32:02 (GMT) |
commit | 399c59d7bd5caeacfd98338d69400f83f15987db (patch) | |
tree | f343a824649412c6e840b639414b6ea4b2d061ca /Doc/library/asyncio-dev.rst | |
parent | 15cc678d8971f5ee1a7ea5e88bcd22413601f033 (diff) | |
download | cpython-399c59d7bd5caeacfd98338d69400f83f15987db.zip cpython-399c59d7bd5caeacfd98338d69400f83f15987db.tar.gz cpython-399c59d7bd5caeacfd98338d69400f83f15987db.tar.bz2 |
asyncio doc: list limitations to run subprocesses from different threads
Diffstat (limited to 'Doc/library/asyncio-dev.rst')
-rw-r--r-- | Doc/library/asyncio-dev.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/asyncio-dev.rst b/Doc/library/asyncio-dev.rst index 63af06a..7083e60 100644 --- a/Doc/library/asyncio-dev.rst +++ b/Doc/library/asyncio-dev.rst @@ -74,6 +74,11 @@ the event loop. The :ref:`Synchronization primitives <asyncio-sync>` section describes ways to synchronize tasks. + The :ref:`Subprocess and threads <asyncio-subprocess-threads>` section lists + asyncio limitations to run subprocesses from different threads. + + + .. _asyncio-handle-blocking: |