Skip to content

Instantly share code, notes, and snippets.

@njsmith
Created December 14, 2017 02:13
Show Gist options
  • Save njsmith/87687ba5de1aeb5aa92336bd31891751 to your computer and use it in GitHub Desktop.
Save njsmith/87687ba5de1aeb5aa92336bd31891751 to your computer and use it in GitHub Desktop.
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