Skip to content

Commit

Permalink
utils/asyn: Replace nest_asyncio with greenlet
Browse files Browse the repository at this point in the history
Provide an implementation of re-entrant asyncio.run() that is less
brittle than what greenback provides (e.g. no use of ctypes to poke
extension types).

The general idea of the implementation consists in treating the executed
coroutine as a generator, then turning that generator into a generator
implemented using greenlet. This allows a nested function to make the
top-level parent yield values on its behalf, as if every call was
annotated with "yield from".
  • Loading branch information
douglas-raillard-arm committed Jul 31, 2024
1 parent 7cfaede commit 458f6c1
Show file tree
Hide file tree
Showing 2 changed files with 419 additions and 14 deletions.
Loading

0 comments on commit 458f6c1

Please sign in to comment.