python-trio / trio-asyncio

a re-implementation of the asyncio mainloop on top of Trio

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Calling an asyncio procedure is started in trio

smurfix opened this issue · comments

Some asyncio code depends on running within the asyncio loop even when building a coroutine from an async function. Currently trio_asyncio ignores that and creates the coroutine in Trio context.

We need to defer that.