We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba1a1a0 commit 039ccf6Copy full SHA for 039ccf6
1 file changed
InternalDocs/asyncio.md
@@ -213,10 +213,10 @@ locking.
213
This section describes the implementation details of async generators in `asyncio`.
214
215
Since async generators are meant to be used from coroutines,
216
-the finalization (execution of finally blocks) of it needs
+their finalization (execution of finally blocks) needs
217
to be done while the loop is running.
218
Most async generators are closed automatically
219
-when they are fully iterated over and exhausted, however,
+when they are fully iterated over and exhausted; however,
220
if the async generator is not fully iterated over,
221
it may not be closed properly, leading to the `finally` blocks not being executed.
222
0 commit comments