summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncio.rst
diff options
context:
space:
mode:
authorGuido van Rossum <guido@dropbox.com>2013-11-22 23:45:02 (GMT)
committerGuido van Rossum <guido@dropbox.com>2013-11-22 23:45:02 (GMT)
commitf0f5d3844a759c6790c323932245faa1d95c17c2 (patch)
treeb1d14492d11b417b9f14bf69f103cacdacb71fbb /Doc/library/asyncio.rst
parentbba86822006eead3c64274cdac7af8ddd9bd16f9 (diff)
downloadcpython-f0f5d3844a759c6790c323932245faa1d95c17c2.zip
cpython-f0f5d3844a759c6790c323932245faa1d95c17c2.tar.gz
cpython-f0f5d3844a759c6790c323932245faa1d95c17c2.tar.bz2
Mention threadpool interface in asyncio overview.
Diffstat (limited to 'Doc/library/asyncio.rst')
-rw-r--r--Doc/library/asyncio.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/asyncio.rst b/Doc/library/asyncio.rst
index 914e381..f093e9e 100644
--- a/Doc/library/asyncio.rst
+++ b/Doc/library/asyncio.rst
@@ -33,6 +33,10 @@ Here is a more detailed list of the package contents:
* :ref:`synchronization primitives <sync>` for use between coroutines in
a single thread, mimicking those in the :mod:`threading` module;
+* an interface for passing work off to a threadpool, for times when
+ you absolutely, positively have to use a library that makes blocking
+ I/O calls.
+
Disclaimer
----------