If you try to socket.connect() to an unreachable TCP/IP address it eventually (~15 seconds) returns with `OSError: [Errno 113] EHOSTUNREACH` However, if you Ctrl-C during this time, the exception is immediately followed by a crash: ``` >>> s.connect(('10.107.1.6', 9999)) Traceback (most recent call last): File "<stdin>", line 1, in <module> OSError: [Errno 113] EHOSTUNREACH >>> NLR jump failed, val=0x3ffda814 Guru Meditation Error of type IllegalInstruction occurred on core 0. Exception was unhandled. ``` This occurs with network.WLAN() or the new network.LAN() adaptor.
If you try to socket.connect() to an unreachable TCP/IP address it eventually (~15 seconds) returns with
OSError: [Errno 113] EHOSTUNREACHHowever, if you Ctrl-C during this time, the exception is immediately followed by a crash:
This occurs with network.WLAN() or the new network.LAN() adaptor.