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
In micropython it is possible to poll on listening sockets exactly like in regular python. In circuit python, poll always returns with an event on POLLIN, it should only do this when a subsequent call to accept will not block.
Description
This is a simple example, not meant to have practical use, where select.poll always returns immediately even if there is no connection causing conn.accept() to block.
Additional information
No response
The text was updated successfully, but these errors were encountered:
CircuitPython version
Code/REPL
Behavior
In micropython it is possible to poll on listening sockets exactly like in regular python. In circuit python, poll always returns with an event on POLLIN, it should only do this when a subsequent call to accept will not block.
Description
This is a simple example, not meant to have practical use, where select.poll always returns immediately even if there is no connection causing conn.accept() to block.
Additional information
No response
The text was updated successfully, but these errors were encountered: