File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 22=======
33
44
5- This document describes the working and implementation details
5+ This document describes the working and implementation details of the
66[ ` asyncio ` ] ( https://docs.python.org/3/library/asyncio.html ) module.
77
88# Task management
@@ -213,9 +213,9 @@ locking.
213213This section describes the implementation details of async generators in ` asyncio ` .
214214
215215Since async generators are meant to be used from coroutines,
216- the finalization (execution of finally blocks) of the it needs
216+ the finalization (execution of finally blocks) of it needs
217217to be done while the loop is running.
218- Most async generators are closed automatically when
218+ Most async generators are closed automatically
219219when they are fully iterated over and exhausted, however,
220220if the async generator is not fully iterated over,
221221it may not be closed properly, leading to the ` finally ` blocks not being executed.
You can’t perform that action at this time.
0 commit comments