1 parent 7e1f580 commit 83a9a72Copy full SHA for 83a9a72
1 file changed
py/mperrno.h
@@ -66,6 +66,7 @@
66
#define MP_EPIPE (32) // Broken pipe
67
#define MP_EDOM (33) // Math argument out of domain of func
68
#define MP_ERANGE (34) // Math result not representable
69
+#define MP_EAFNOSUPPORT (97) // Address family not supported by protocol
70
#define MP_ENOTCONN (107) // Transport endpoint is not connected
71
#define MP_ETIMEDOUT (110) // Connection timed out
72
@@ -109,6 +110,7 @@
109
110
#define MP_EPIPE EPIPE
111
#define MP_EDOM EDOM
112
#define MP_ERANGE ERANGE
113
+#define MP_EAFNOSUPPORT EAFNOSUPPORT
114
#define MP_ENOTCONN ENOTCONN
115
#define MP_ETIMEDOUT ETIMEDOUT
116
0 commit comments