File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
5050Blocking functions should not be called directly. For example, if a function
Original file line number Diff line number Diff line change @@ -8,15 +8,15 @@ Event loops
88The event loop is the central execution device provided by :mod: `asyncio `.
99It 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
2121Event loop functions
2222--------------------
Original file line number Diff line number Diff 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;
You can’t perform that action at this time.
0 commit comments