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 af9ba25 commit 34f3335Copy full SHA for 34f3335
1 file changed
Doc/howto/a-conceptual-overview-of-asyncio.rst
@@ -175,7 +175,6 @@ to specify the event loop.
175
await
176
=====
177
178
-
179
:keyword:`await` is a Python keyword that's commonly used in one of two
180
different ways::
181
@@ -275,7 +274,7 @@ any yields it receives up the call-chain.
275
274
In this case, that's back to ``... = coroutine.send(None)`` on line 16.
276
277
The coroutine is resumed via the ``coroutine.send(42)`` call on line 21.
278
-The coroutine picks back up from where it ``yield``\ ed (that is, paused) on line 3
+The coroutine picks back up from where it ``yield``\ ed (or paused) on line 3
279
and executes the remaining statements in its body.
280
When a coroutine finishes it raises a :exc:`StopIteration` exception with the
281
return value attached to the exception.
0 commit comments