b505971069
This commit switches the roles of the helper task from a cancellation task to a runner task, to get the correct semantics for cancellation of wait_for. Some uasyncio tests are now disabled for the native emitter due to issues with native code generation of generators and yield-from. Fixes #5797. Signed-off-by: Damien George <damien@micropython.org>
27 lines
396 B
Plaintext
27 lines
396 B
Plaintext
----------
|
|
cancel started
|
|
awaiting started
|
|
cancel wait()
|
|
Got canceled
|
|
awaiting canceled
|
|
waiting got cancelled
|
|
----------
|
|
cancel started
|
|
awaiting started
|
|
cancel wait()
|
|
Got canceled
|
|
awaiting canceled
|
|
waiting got cancelled
|
|
----------
|
|
cancel started
|
|
awaiting started
|
|
cancel wait()
|
|
Got canceled
|
|
awaiting canceled
|
|
----------
|
|
cancel started
|
|
awaiting started
|
|
cancel wait()
|
|
Got canceled
|
|
awaiting canceled
|