File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -175,7 +175,6 @@ to specify the event loop.
175175await
176176=====
177177
178-
179178:keyword: `await ` is a Python keyword that's commonly used in one of two
180179different ways::
181180
@@ -275,7 +274,7 @@ any yields it receives up the call-chain.
275274In this case, that's back to ``... = coroutine.send(None) `` on line 16.
276275
277276The 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
277+ The coroutine picks back up from where it ``yield ``\ ed (or paused) on line 3
279278and executes the remaining statements in its body.
280279When a coroutine finishes it raises a :exc: `StopIteration ` exception with the
281280return value attached to the exception.
You can’t perform that action at this time.
0 commit comments