Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b73c833

Browse files
committed
Various formatting & grammar fixes in asyncio* docs.
1 parent 8b40262 commit b73c833

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

Doc/library/asyncio-dev.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ the event loop.
4444

4545
.. _asyncio-handle-blocking:
4646

47-
Handle correctly blocking functions
47+
Handle blocking functions correctly
4848
-----------------------------------
4949

5050
Blocking functions should not be called directly. For example, if a function

Doc/library/asyncio-eventloop.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ Event loops
88
The event loop is the central execution device provided by :mod:`asyncio`.
99
It provides multiple facilities, amongst which:
1010

11-
* Registering, executing and cancelling delayed calls (timeouts)
11+
* Registering, executing and cancelling delayed calls (timeouts).
1212

1313
* Creating client and server :ref:`transports <asyncio-transport>` for various
14-
kinds of communication
14+
kinds of communication.
1515

1616
* Launching subprocesses and the associated :ref:`transports <asyncio-transport>`
17-
for communication with an external program
17+
for communication with an external program.
1818

19-
* Delegating costly function calls to a pool of threads
19+
* Delegating costly function calls to a pool of threads.
2020

2121
Event loop functions
2222
--------------------

Doc/library/asyncio.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Here is a more detailed list of the package contents:
3030
* coroutines and tasks based on ``yield from`` (:PEP:`380`), to help write
3131
concurrent code in a sequential fashion;
3232

33-
* cancellation support for Futures and coroutines;
33+
* cancellation support for :class:`Future`\s and coroutines;
3434

3535
* :ref:`synchronization primitives <asyncio-sync>` for use between coroutines in
3636
a single thread, mimicking those in the :mod:`threading` module;

0 commit comments

Comments
 (0)