diff options
author | Guido van Rossum <guido@dropbox.com> | 2013-11-22 19:47:22 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@dropbox.com> | 2013-11-22 19:47:22 (GMT) |
commit | 7a465647e47957e95acc3ae0f84d945b0c47707d (patch) | |
tree | 3c8ede712d84c77471c71f5deaad37508297a2af /Doc/library/concurrency.rst | |
parent | 873d1226b7cd42c663a4e09fa43a561de2e9f463 (diff) | |
download | cpython-7a465647e47957e95acc3ae0f84d945b0c47707d.zip cpython-7a465647e47957e95acc3ae0f84d945b0c47707d.tar.gz cpython-7a465647e47957e95acc3ae0f84d945b0c47707d.tar.bz2 |
asyncio: Pass cancellation from wrapping Future to wrapped Future. By Saúl Ibarra Corretgé (mostly).
Diffstat (limited to 'Doc/library/concurrency.rst')
-rw-r--r-- | Doc/library/concurrency.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/library/concurrency.rst b/Doc/library/concurrency.rst index 2d69107..e016694 100644 --- a/Doc/library/concurrency.rst +++ b/Doc/library/concurrency.rst @@ -22,6 +22,7 @@ multitasking). Here's an overview: queue.rst select.rst selectors.rst + asyncio.rst The following are support modules for some of the above services: |