-
-
Notifications
You must be signed in to change notification settings - Fork 73
Closed
Labels
Description
To reproduce, copy any code-block with :linenos:
on this page, using the "Copy" button.
The result:
>>> 1class Rock:
... 2 def __await__(self):
... 3 value_sent_in = yield 7
... 4 print(f"Rock.__await__ resuming with value: {value_sent_in}.")
... 5 return value_sent_in
... 6
... 7async def main():
... 8 print("Beginning coroutine main().")
... 9 rock = Rock()
[...]
cc @tomasr8