Mention threadpool interface in asyncio overview.

This commit is contained in:
Guido van Rossum 2013-11-22 15:45:02 -08:00
parent bba8682200
commit f0f5d3844a
1 changed files with 4 additions and 0 deletions

View File

@ -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
----------