Reinventing Python's AsyncIO
6 points by gi0baro
6 points by gi0baro
Interesting part how synchronization gonna work between coroutines, in asyncio you do not need anything at all if code block does not crossing await points, in proposed setup everything need to be guarded with lock as far as I can tell.