Open larsks opened 6 years ago
Run into the same issue on the lastest micropython-lib but without interrupting the code with ^C. Possibly, some internal exceptions in _socket lib while I read from reader
await reader.readline()
Had to catch this weird exception to run my code
Is this still a problem with the latest MicroPython ?
I have written some code that uses the
asyncio
module. The entrypoint point to my code looks like this:And
control.main
looks like:I just upgraded to the version in
micropython-lib
as of 9e21d6e, and now when I interrupt my code with ^C I see the following error:That seems to correspond to the following line in
uasyncio/__init__.py
:What's going on here?