# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT """ This module makes available standard errno system symbols. The value of each symbol is the corresponding integer value, e.g., on most systems, errno.ENOENT equals the integer 2. The dictionary errno.errorcode maps numeric codes to symbol names, e.g., errno.errorcode[2] could be the string 'ENOENT'. Symbols that are not relevant to the underlying system are not defined. To map error codes to error messages, use the function os.strerror(), e.g. os.strerror(2) could return 'No such file or directory'. """ E2BIG = 7 EACCES = 13 EADDRINUSE = 48 EADDRNOTAVAIL = 49 EAFNOSUPPORT = 47 EAGAIN = 35 EALREADY = 37 EBADF = 9 EBADMSG = 94 EBUSY = 16 ECHILD = 10 ECONNABORTED = 53 ECONNREFUSED = 61 ECONNRESET = 54 EDEADLK = 11 EDESTADDRREQ = 39 EDOM = 33 EDQUOT = 69 EEXIST = 17 EFAULT = 14 EFBIG = 27 EHOSTDOWN = 64 EHOSTUNREACH = 65 EIDRM = 90 EILSEQ = 92 EINPROGRESS = 36 EINTR = 4 EINVAL = 22 EIO = 5 EISCONN = 56 EISDIR = 21 ELOOP = 62 EMFILE = 24 EMLINK = 31 EMSGSIZE = 40 EMULTIHOP = 95 ENAMETOOLONG = 63 ENETDOWN = 50 ENETRESET = 52 ENETUNREACH = 51 ENFILE = 23 ENOBUFS = 55 ENODATA = 96 ENODEV = 19 ENOENT = 2 ENOEXEC = 8 ENOLCK = 77 ENOLINK = 97 ENOMEM = 12 ENOMSG = 91 ENOPROTOOPT = 42 ENOSPC = 28 ENOSR = 98 ENOSTR = 99 ENOSYS = 78 ENOTBLK = 15 ENOTCONN = 57 ENOTDIR = 20 ENOTEMPTY = 66 ENOTSOCK = 38 ENOTSUP = 45 ENOTTY = 25 ENXIO = 6 EOPNOTSUPP = 102 EOVERFLOW = 84 EPERM = 1 EPFNOSUPPORT = 46 EPIPE = 32 EPROTO = 100 EPROTONOSUPPORT = 43 EPROTOTYPE = 41 ERANGE = 34 EREMOTE = 71 EROFS = 30 ESHUTDOWN = 58 ESOCKTNOSUPPORT = 44 ESPIPE = 29 ESRCH = 3 ESTALE = 70 ETIME = 101 ETIMEDOUT = 60 ETOOMANYREFS = 59 ETXTBSY = 26 EUSERS = 68 EWOULDBLOCK = 35 EXDEV = 18 __doc__ = """This module makes available standard errno system symbols. The value of each symbol is the corresponding integer value, e.g., on most systems, errno.ENOENT equals the integer 2. The dictionary errno.errorcode maps numeric codes to symbol names, e.g., errno.errorcode[2] could be the string 'ENOENT'. Symbols that are not relevant to the underlying system are not defined. To map error codes to error messages, use the function os.strerror(), e.g. os.strerror(2) could return 'No such file or directory'.""" __name__ = 'errno' __package__ = None errorcode = {}