Hacker News new | ask | show | jobs
by woadwarrior01 585 days ago
> Can you comment on the use of asynchronous code rather than generators?

I'm not the OP. IIUC, async functions are implemented using generators under the hood. cf: The asyncio.coroutine decorator from Python 3.4, before async await syntax was implemented in Python 3.5 (PEP 492).

1 comments

Correct in this case. In src/seqlogic/sim.py there are four usages of 'yield' keyword that suspend the current coroutine and return control to the event loop.