errno: Add ENOTCONN constant.

This is present in core MicroPython so needs to be added here.

Signed-off-by: Nick Budak <thatbudakguy@gmail.com>
pull/1019/head
Nick Budak 2025-06-04 09:55:47 -07:00 zatwierdzone przez Damien George
rodzic aad2e48098
commit 15a6233d04
2 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -34,5 +34,6 @@ EDOM = 33 # Math argument out of domain of func
ERANGE = 34 # Math result not representable
EAFNOSUPPORT = 97 # Address family not supported by protocol
ECONNRESET = 104 # Connection timed out
ENOTCONN = 107 # Not connected
ETIMEDOUT = 110 # Connection timed out
EINPROGRESS = 115 # Operation now in progress

Wyświetl plik

@ -1,3 +1,3 @@
metadata(version="0.1.4")
metadata(version="0.2.0")
module("errno.py")