You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
Traceback (most recent call last):
File "snakecharmer/main.py", line 10, in <module>
File "snakecharmer/control.py", line 52, in main
File "uasyncio/__init__.py", line 246, in start_server
TypeError: exceptions must derive from BaseException
That seems to correspond to the following line in uasyncio/__init__.py:
yield IORead(s)
What's going on here?
The text was updated successfully, but these errors were encountered:
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
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?
The text was updated successfully, but these errors were encountered: