diff options
author | Eli Bendersky <eliben@gmail.com> | 2014-02-09 14:07:47 (GMT) |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2014-02-09 14:07:47 (GMT) |
commit | b73c83318d02036281816c51e17a05c568f3db4e (patch) | |
tree | aa1920b5ea0463de27afb8b0d7c26c1dd41d3655 /Doc/library/asyncio-eventloop.rst | |
parent | 8b402629aeb9922b6e80204b913f4022da1ce730 (diff) | |
download | cpython-b73c83318d02036281816c51e17a05c568f3db4e.zip cpython-b73c83318d02036281816c51e17a05c568f3db4e.tar.gz cpython-b73c83318d02036281816c51e17a05c568f3db4e.tar.bz2 |
Various formatting & grammar fixes in asyncio* docs.
Diffstat (limited to 'Doc/library/asyncio-eventloop.rst')
-rw-r--r-- | Doc/library/asyncio-eventloop.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst index fcaf5e5..044f8d7 100644 --- a/Doc/library/asyncio-eventloop.rst +++ b/Doc/library/asyncio-eventloop.rst @@ -8,15 +8,15 @@ Event loops The event loop is the central execution device provided by :mod:`asyncio`. It provides multiple facilities, amongst which: -* Registering, executing and cancelling delayed calls (timeouts) +* Registering, executing and cancelling delayed calls (timeouts). * Creating client and server :ref:`transports <asyncio-transport>` for various - kinds of communication + kinds of communication. * Launching subprocesses and the associated :ref:`transports <asyncio-transport>` - for communication with an external program + for communication with an external program. -* Delegating costly function calls to a pool of threads +* Delegating costly function calls to a pool of threads. Event loop functions -------------------- |