]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Mention threadpool interface in asyncio overview.
authorGuido van Rossum <guido@dropbox.com>
Fri, 22 Nov 2013 23:45:02 +0000 (15:45 -0800)
committerGuido van Rossum <guido@dropbox.com>
Fri, 22 Nov 2013 23:45:02 +0000 (15:45 -0800)
Doc/library/asyncio.rst

index 914e38159eb3188f03ce79c22bfb25154f34a6f2..f093e9ed25b226d52ec8bd5b66ba14c875606041 100644 (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
 ----------