Files
typeshed/stdlib/errno.pyi
2022-06-26 08:29:02 +05:30

221 lines
3.8 KiB
Python

import sys
from collections.abc import Mapping
errorcode: Mapping[int, str]
EPERM: int
ENOENT: int
ESRCH: int
EINTR: int
EIO: int
ENXIO: int
E2BIG: int
ENOEXEC: int
EBADF: int
ECHILD: int
EAGAIN: int
ENOMEM: int
EACCES: int
EFAULT: int
EBUSY: int
EEXIST: int
EXDEV: int
ENODEV: int
ENOTDIR: int
EISDIR: int
EINVAL: int
ENFILE: int
EMFILE: int
ENOTTY: int
ETXTBSY: int
EFBIG: int
ENOSPC: int
ESPIPE: int
EROFS: int
EMLINK: int
EPIPE: int
EDOM: int
ERANGE: int
EDEADLK: int
ENAMETOOLONG: int
ENOLCK: int
ENOSYS: int
ENOTEMPTY: int
ELOOP: int
EWOULDBLOCK: int
ENOMSG: int
EIDRM: int
ENOSTR: int
ENODATA: int
ETIME: int
ENOSR: int
EREMOTE: int
ENOLINK: int
EPROTO: int
EBADMSG: int
EOVERFLOW: int
EILSEQ: int
EUSERS: int
ENOTSOCK: int
EDESTADDRREQ: int
EMSGSIZE: int
EPROTOTYPE: int
ENOPROTOOPT: int
EPROTONOSUPPORT: int
ESOCKTNOSUPPORT: int
ENOTSUP: int
EOPNOTSUPP: int
EPFNOSUPPORT: int
EAFNOSUPPORT: int
EADDRINUSE: int
EADDRNOTAVAIL: int
ENETDOWN: int
ENETUNREACH: int
ENETRESET: int
ECONNABORTED: int
ECONNRESET: int
ENOBUFS: int
EISCONN: int
ENOTCONN: int
ESHUTDOWN: int
ETOOMANYREFS: int
ETIMEDOUT: int
ECONNREFUSED: int
EHOSTDOWN: int
EHOSTUNREACH: int
EALREADY: int
EINPROGRESS: int
ESTALE: int
EDQUOT: int
ECANCELED: int # undocumented
ENOTRECOVERABLE: int # undocumented
EOWNERDEAD: int # undocumented
if sys.platform != "win32":
ENOTBLK: int
EMULTIHOP: int
# All of the below are undocumented
EAUTH: int
EBADARCH: int
EBADEXEC: int
EBADMACHO: int
EBADRPC: int
EDEVERR: int
EFTYPE: int
ENEEDAUTH: int
ENOATTR: int
ENOPOLICY: int
EPROCLIM: int
EPROCUNAVAIL: int
EPROGMISMATCH: int
EPROGUNAVAIL: int
EPWROFF: int
ERPCMISMATCH: int
ESHLIBVERS: int
if sys.platform != "darwin" or sys.version_info >= (3, 11):
EQFULL: int # undocumented
if sys.platform != "darwin":
EDEADLOCK: int
if sys.platform != "win32" and sys.platform != "darwin":
ECHRNG: int
EL2NSYNC: int
EL3HLT: int
EL3RST: int
ELNRNG: int
EUNATCH: int
ENOCSI: int
EL2HLT: int
EBADE: int
EBADR: int
EXFULL: int
ENOANO: int
EBADRQC: int
EBADSLT: int
EBFONT: int
ENONET: int
ENOPKG: int
EADV: int
ESRMNT: int
ECOMM: int
EDOTDOT: int
ENOTUNIQ: int
EBADFD: int
EREMCHG: int
ELIBACC: int
ELIBBAD: int
ELIBSCN: int
ELIBMAX: int
ELIBEXEC: int
ERESTART: int
ESTRPIPE: int
EUCLEAN: int
ENOTNAM: int
ENAVAIL: int
EISNAM: int
EREMOTEIO: int
# All of the below are undocumented
EKEYEXPIRED: int
EKEYREJECTED: int
EKEYREVOKED: int
EMEDIUMTYPE: int
ENOKEY: int
ENOMEDIUM: int
ERFKILL: int
EL: int
ELOCKUNMAPPED: int
ENOTACTIVE: int
if sys.platform == "win32":
# All of these are undocumented
WSABASEERR: int
WSAEACCES: int
WSAEADDRINUSE: int
WSAEADDRNOTAVAIL: int
WSAEAFNOSUPPORT: int
WSAEALREADY: int
WSAEBADF: int
WSAECONNABORTED: int
WSAECONNREFUSED: int
WSAECONNRESET: int
WSAEDESTADDRREQ: int
WSAEDISCON: int
WSAEDQUOT: int
WSAEFAULT: int
WSAEHOSTDOWN: int
WSAEHOSTUNREACH: int
WSAEINPROGRESS: int
WSAEINTR: int
WSAEINVAL: int
WSAEISCONN: int
WSAELOOP: int
WSAEMFILE: int
WSAEMSGSIZE: int
WSAENAMETOOLONG: int
WSAENETDOWN: int
WSAENETRESET: int
WSAENETUNREACH: int
WSAENOBUFS: int
WSAENOPROTOOPT: int
WSAENOTCONN: int
WSAENOTEMPTY: int
WSAENOTSOCK: int
WSAEOPNOTSUPP: int
WSAEPFNOSUPPORT: int
WSAEPROCLIM: int
WSAEPROTONOSUPPORT: int
WSAEPROTOTYPE: int
WSAEREMOTE: int
WSAESHUTDOWN: int
WSAESOCKTNOSUPPORT: int
WSAESTALE: int
WSAETIMEDOUT: int
WSAETOOMANYREFS: int
WSAEUSERS: int
WSAEWOULDBLOCK: int
WSANOTINITIALISED: int
WSASYSNOTREADY: int
WSAVERNOTSUPPORTED: int