micropython-lib/uasyncio.core
Paul Sokolovsky afa6192501 uasyncio.core: Store currently executed task as an attribute of event loop.
Currently executed task is a top-level coroutine scheduled in the event
loop (note that sub-coroutines aren't scheduled in the event loop and
are executed implicitly by yield from/await, driven by top-level coro).
2017-12-03 00:22:17 +02:00
..
uasyncio uasyncio.core: Store currently executed task as an attribute of event loop. 2017-12-03 00:22:17 +02:00
example_call_soon.py uasyncio: Move test_call_soon.py to uasyncio.core, as it needs only it. 2017-01-04 18:01:05 +03:00
metadata.txt uasyncio.core: Release 1.5.1, updated description. 2017-10-28 22:52:15 +03:00
setup.py uasyncio.core: Release 1.5.1, updated description. 2017-10-28 22:52:15 +03:00
test_cb_args.py uasyncio.core: Add test for callback args to call_soon(). 2017-05-22 13:57:57 +03:00
test_fair_schedule.py uasyncio.core: Add test for fair scheduling. 2017-03-06 12:16:34 +01:00
test_full_wait.py uasyncio.core/test_full_wait: Update for .wait() called on each loop iter. 2017-08-20 17:06:07 +03:00