QUERY · ISSUE
extmod/uasyncio: gather gets stuck if you pass an empty list in v1.19
bugextmod
Hello, folks
This is pretty straightforward in v1.17 and v1.18 passing an empty list to gather will return (or yield) whereas in v1.19 it gets stuck for ever. Not sure if this is a new intended behavior (which is not in the docs?). I'm assuming this is a bug as there is nothing in the release notes.
Cheers,
CANDIDATE · PULL REQUEST
tests/extmod/uasyncio_gather: Make double-raise gather test reliable.
tests
This double-raise test could fail when task[0] raises and stops the gather before task[1] raises, then task[1] is left to raise later on and spoil the test.
This should fix a lot of the spurious CI failures that have come up lately.