diff -r 4d63ee2ff753 Doc/library/asyncio.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Doc/library/asyncio.rst Fri Nov 22 10:55:39 2013 -0800 @@ -0,0 +1,20 @@ +:mod:`asyncio` -- Asynchronous I/O, event loop, coroutines and tasks +==================================================================== + +.. module:: asyncio + :synopsis: Asynchronous I/O, event loop, coroutines and tasks. + +.. versionadded:: 3.4 + + +Introduction +------------ + +This package includes a pluggable event loop, transport and protocol +abstractions similar to those in Twisted, and a higher-level scheduler +for coroutines and tasks based on ``yield from`` (:PEP:`380`). + +Full documentation is not yet ready; we hope to have it written +before Python 3.4 leaves beta. Until then, the best reference is +:PEP:`3156`. For a motivational primer on transports and protocols, +see :PEP:`3153`. diff -r 4d63ee2ff753 Doc/library/concurrency.rst --- a/Doc/library/concurrency.rst Thu Nov 21 23:57:49 2013 +0100 +++ b/Doc/library/concurrency.rst Fri Nov 22 10:55:39 2013 -0800 @@ -22,6 +22,7 @@ queue.rst select.rst selectors.rst + asyncio.rst The following are support modules for some of the above services: