Commit 9ff41803 authored by Terry Jan Reedy's avatar Terry Jan Reedy

Asyncio doc fixes: spelling, grammar, duplication.

parent c935a953
...@@ -58,13 +58,11 @@ Run an event loop ...@@ -58,13 +58,11 @@ Run an event loop
.. method:: BaseEventLoop.close() .. method:: BaseEventLoop.close()
Close the event loop. The loop should not be running. Close the event loop. The loop must not be running.
This clears the queues and shuts down the executor, but does not wait for This clears the queues and shuts down the executor, but does not wait for
the executor to finish. the executor to finish.
The event loop must not be running.
This is idempotent and irreversible. No other methods should be called after This is idempotent and irreversible. No other methods should be called after
this one. this one.
......
...@@ -39,7 +39,7 @@ Here is a more detailed list of the package contents: ...@@ -39,7 +39,7 @@ Here is a more detailed list of the package contents:
you absolutely, positively have to use a library that makes blocking you absolutely, positively have to use a library that makes blocking
I/O calls. I/O calls.
Table of content: Table of contents:
.. toctree:: .. toctree::
:maxdepth: 3 :maxdepth: 3
...@@ -55,6 +55,6 @@ Table of content: ...@@ -55,6 +55,6 @@ Table of content:
.. seealso:: .. seealso::
The :mod:`asyncio` module was designed in the :PEP:`3156`. For a The :mod:`asyncio` module was designed in :PEP:`3156`. For a
motivational primer on transports and protocols, see :PEP:`3153`. motivational primer on transports and protocols, see :PEP:`3153`.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment