# 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 EAUTH = 80 EBADARCH = 86 EBADEXEC = 85 EBADF = 9 EBADMACHO = 88 EBADMSG = 94 EBADRPC = 72 EBUSY = 16 ECANCELED = 89 ECHILD = 10 ECONNABORTED = 53 ECONNREFUSED = 61 ECONNRESET = 54 EDEADLK = 11 EDESTADDRREQ = 39 EDEVERR = 83 EDOM = 33 EDQUOT = 69 EEXIST = 17 EFAULT = 14 EFBIG = 27 EFTYPE = 79 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 ENEEDAUTH = 81 ENETDOWN = 50 ENETRESET = 52 ENETUNREACH = 51 ENFILE = 23 ENOATTR = 93 ENOBUFS = 55 ENODATA = 96 ENODEV = 19 ENOENT = 2 ENOEXEC = 8 ENOLCK = 77 ENOLINK = 97 ENOMEM = 12 ENOMSG = 91 ENOPOLICY = 103 ENOPROTOOPT = 42 ENOSPC = 28 ENOSR = 98 ENOSTR = 99 ENOSYS = 78 ENOTBLK = 15 ENOTCONN = 57 ENOTDIR = 20 ENOTEMPTY = 66 ENOTRECOVERABLE = 104 ENOTSOCK = 38 ENOTSUP = 45 ENOTTY = 25 ENXIO = 6 EOPNOTSUPP = 102 EOVERFLOW = 84 EOWNERDEAD = 105 EPERM = 1 EPFNOSUPPORT = 46 EPIPE = 32 EPROCLIM = 67 EPROCUNAVAIL = 76 EPROGMISMATCH = 75 EPROGUNAVAIL = 74 EPROTO = 100 EPROTONOSUPPORT = 43 EPROTOTYPE = 41 EPWROFF = 82 EQFULL = 106 ERANGE = 34 EREMOTE = 71 EROFS = 30 ERPCMISMATCH = 73 ESHLIBVERS = 87 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'.""" class __loader__(object): """ Meta path import for built-in modules. All methods are either class or static methods to avoid the need to instantiate the class. """ _ORIGIN = 'built-in' def create_module(self, spec): """ Create a built-in module """ pass def exec_module(self, module): """ Exec a built-in module """ pass def find_spec(self, fullname, path=None, target=None): pass def get_code(self, fullname): """ Return None as built-in modules do not have code objects. """ pass def get_source(self, fullname): """ Return None as built-in modules do not have source code. """ pass def is_package(self, fullname): """ Return False as built-in modules are never packages. """ pass def load_module(self, fullname): """ Load the specified module into sys.modules and return it. This method is deprecated. Use loader.exec_module() instead. """ pass __name__ = 'errno' __package__ = '' __spec__ = None errorcode = {}