File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -84,14 +84,15 @@ same convention.
84
84
85
85
# 4. The asyn.py library
86
86
87
- This library provides 'micro' implementations of the ` asyncio ` synchronisation
88
- primitives [ CPython docs] ( https://docs.python.org/3/library/asyncio-sync.html ) .
87
+ This library [ docs] ( ./PRIMITIVES.md ) provides 'micro' implementations of the
88
+ ` asyncio ` synchronisation primitives.
89
+ [ CPython docs] ( https://docs.python.org/3/library/asyncio-sync.html )
89
90
90
91
It also supports a ` Barrier ` class to facilitate coroutine synchronisation.
91
92
92
93
Coroutine cancellation is performed in an efficient manner in ` uasyncio ` . The
93
- ` asyn ` library enhances this by enabling the cancelling coro to pause until
94
- cancellation is complete and to check the 'running' status of individual
95
- coroutines.
94
+ ` asyn ` library uses this, further enabling the cancelling coro to pause until
95
+ cancellation is complete. It also provides a means of checking the 'running'
96
+ status of individual coroutines.
96
97
97
98
A lightweight implementation of ` asyncio.gather ` is provided.
You can’t perform that action at this time.
0 commit comments