-
-
Save njsmith/87687ba5de1aeb5aa92336bd31891751 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import trio | |
async def coro(): | |
pass | |
async def main(): | |
async with trio.open_nursery() as nursery: | |
c = coro() | |
nursery.start_soon(c) | |
trio.run(main) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment