开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
捐赠
捐赠前请先登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
1 Star 0 Fork 0

source-code-analysis/python3.8.1

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (1)
master
master
分支 (1)
master
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (1)
master
python3.8.1
/
Doc
/
library
/
errno.rst
python3.8.1
/
Doc
/
library
/
errno.rst
errno.rst 6.65 KB
一键复制 编辑 原始数据 按行查看 历史
zhangweibo 提交于 2021年11月16日 09:46 +08:00 . git init

:mod:`errno` --- Standard errno system symbols

.. module:: errno
 :synopsis: Standard errno system symbols.


This module makes available standard errno system symbols. The value of each symbol is the corresponding integer value. The names and descriptions are borrowed from :file:`linux/include/errno.h`, which should be pretty all-inclusive.

.. data:: errorcode

 Dictionary providing a mapping from the errno value to the string name in the
 underlying system. For instance, ``errno.errorcode[errno.EPERM]`` maps to
 ``'EPERM'``.

To translate a numeric error code to an error message, use :func:`os.strerror`.

Of the following list, symbols that are not used on the current platform are not defined by the module. The specific list of defined symbols is available as errno.errorcode.keys(). Symbols available can include:

.. data:: EPERM

 Operation not permitted


.. data:: ENOENT

 No such file or directory


.. data:: ESRCH

 No such process


.. data:: EINTR

 Interrupted system call.

 .. seealso::
 This error is mapped to the exception :exc:`InterruptedError`.


.. data:: EIO

 I/O error


.. data:: ENXIO

 No such device or address


.. data:: E2BIG

 Arg list too long


.. data:: ENOEXEC

 Exec format error


.. data:: EBADF

 Bad file number


.. data:: ECHILD

 No child processes


.. data:: EAGAIN

 Try again


.. data:: ENOMEM

 Out of memory


.. data:: EACCES

 Permission denied


.. data:: EFAULT

 Bad address


.. data:: ENOTBLK

 Block device required


.. data:: EBUSY

 Device or resource busy


.. data:: EEXIST

 File exists


.. data:: EXDEV

 Cross-device link


.. data:: ENODEV

 No such device


.. data:: ENOTDIR

 Not a directory


.. data:: EISDIR

 Is a directory


.. data:: EINVAL

 Invalid argument


.. data:: ENFILE

 File table overflow


.. data:: EMFILE

 Too many open files


.. data:: ENOTTY

 Not a typewriter


.. data:: ETXTBSY

 Text file busy


.. data:: EFBIG

 File too large


.. data:: ENOSPC

 No space left on device


.. data:: ESPIPE

 Illegal seek


.. data:: EROFS

 Read-only file system


.. data:: EMLINK

 Too many links


.. data:: EPIPE

 Broken pipe


.. data:: EDOM

 Math argument out of domain of func


.. data:: ERANGE

 Math result not representable


.. data:: EDEADLK

 Resource deadlock would occur


.. data:: ENAMETOOLONG

 File name too long


.. data:: ENOLCK

 No record locks available


.. data:: ENOSYS

 Function not implemented


.. data:: ENOTEMPTY

 Directory not empty


.. data:: ELOOP

 Too many symbolic links encountered


.. data:: EWOULDBLOCK

 Operation would block


.. data:: ENOMSG

 No message of desired type


.. data:: EIDRM

 Identifier removed


.. data:: ECHRNG

 Channel number out of range


.. data:: EL2NSYNC

 Level 2 not synchronized


.. data:: EL3HLT

 Level 3 halted


.. data:: EL3RST

 Level 3 reset


.. data:: ELNRNG

 Link number out of range


.. data:: EUNATCH

 Protocol driver not attached


.. data:: ENOCSI

 No CSI structure available


.. data:: EL2HLT

 Level 2 halted


.. data:: EBADE

 Invalid exchange


.. data:: EBADR

 Invalid request descriptor


.. data:: EXFULL

 Exchange full


.. data:: ENOANO

 No anode


.. data:: EBADRQC

 Invalid request code


.. data:: EBADSLT

 Invalid slot


.. data:: EDEADLOCK

 File locking deadlock error


.. data:: EBFONT

 Bad font file format


.. data:: ENOSTR

 Device not a stream


.. data:: ENODATA

 No data available


.. data:: ETIME

 Timer expired


.. data:: ENOSR

 Out of streams resources


.. data:: ENONET

 Machine is not on the network


.. data:: ENOPKG

 Package not installed


.. data:: EREMOTE

 Object is remote


.. data:: ENOLINK

 Link has been severed


.. data:: EADV

 Advertise error


.. data:: ESRMNT

 Srmount error


.. data:: ECOMM

 Communication error on send


.. data:: EPROTO

 Protocol error


.. data:: EMULTIHOP

 Multihop attempted


.. data:: EDOTDOT

 RFS specific error


.. data:: EBADMSG

 Not a data message


.. data:: EOVERFLOW

 Value too large for defined data type


.. data:: ENOTUNIQ

 Name not unique on network


.. data:: EBADFD

 File descriptor in bad state


.. data:: EREMCHG

 Remote address changed


.. data:: ELIBACC

 Can not access a needed shared library


.. data:: ELIBBAD

 Accessing a corrupted shared library


.. data:: ELIBSCN

 .lib section in a.out corrupted


.. data:: ELIBMAX

 Attempting to link in too many shared libraries


.. data:: ELIBEXEC

 Cannot exec a shared library directly


.. data:: EILSEQ

 Illegal byte sequence


.. data:: ERESTART

 Interrupted system call should be restarted


.. data:: ESTRPIPE

 Streams pipe error


.. data:: EUSERS

 Too many users


.. data:: ENOTSOCK

 Socket operation on non-socket


.. data:: EDESTADDRREQ

 Destination address required


.. data:: EMSGSIZE

 Message too long


.. data:: EPROTOTYPE

 Protocol wrong type for socket


.. data:: ENOPROTOOPT

 Protocol not available


.. data:: EPROTONOSUPPORT

 Protocol not supported


.. data:: ESOCKTNOSUPPORT

 Socket type not supported


.. data:: EOPNOTSUPP

 Operation not supported on transport endpoint


.. data:: EPFNOSUPPORT

 Protocol family not supported


.. data:: EAFNOSUPPORT

 Address family not supported by protocol


.. data:: EADDRINUSE

 Address already in use


.. data:: EADDRNOTAVAIL

 Cannot assign requested address


.. data:: ENETDOWN

 Network is down


.. data:: ENETUNREACH

 Network is unreachable


.. data:: ENETRESET

 Network dropped connection because of reset


.. data:: ECONNABORTED

 Software caused connection abort


.. data:: ECONNRESET

 Connection reset by peer


.. data:: ENOBUFS

 No buffer space available


.. data:: EISCONN

 Transport endpoint is already connected


.. data:: ENOTCONN

 Transport endpoint is not connected


.. data:: ESHUTDOWN

 Cannot send after transport endpoint shutdown


.. data:: ETOOMANYREFS

 Too many references: cannot splice


.. data:: ETIMEDOUT

 Connection timed out


.. data:: ECONNREFUSED

 Connection refused


.. data:: EHOSTDOWN

 Host is down


.. data:: EHOSTUNREACH

 No route to host


.. data:: EALREADY

 Operation already in progress


.. data:: EINPROGRESS

 Operation now in progress


.. data:: ESTALE

 Stale NFS file handle


.. data:: EUCLEAN

 Structure needs cleaning


.. data:: ENOTNAM

 Not a XENIX named type file


.. data:: ENAVAIL

 No XENIX semaphores available


.. data:: EISNAM

 Is a named type file


.. data:: EREMOTEIO

 Remote I/O error


.. data:: EDQUOT

 Quota exceeded

Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

暂无描述
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/python_sourcecode/python3.8.1.git
git@gitee.com:python_sourcecode/python3.8.1.git
python_sourcecode
python3.8.1
python3.8.1
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /