From: Guido van Rossum Date: Fri, 22 Nov 2013 23:45:02 +0000 (-0800) Subject: Mention threadpool interface in asyncio overview. X-Git-Tag: v3.4.0b1~96 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f0f5d3844a759c6790c323932245faa1d95c17c2;p=thirdparty%2FPython%2Fcpython.git Mention threadpool interface in asyncio overview. --- diff --git a/Doc/library/asyncio.rst b/Doc/library/asyncio.rst index 914e38159eb3..f093e9ed25b2 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 ` 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 ----------