Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-85046: Document most errno constants #126420

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
127 changes: 127 additions & 0 deletions Doc/library/errno.rst
Original file line number Diff line number Diff line change
Expand Up @@ -659,12 +659,139 @@ defined by the module. The specific list of defined symbols is available as

Quota exceeded


.. data:: EQFULL

Interface output queue is full

.. versionadded:: 3.11


.. data:: ENOMEDIUM

No medium found

rruuaanng marked this conversation as resolved.
Show resolved Hide resolved

.. data:: EMEDIUMTYPE

Wrong medium type


.. data:: ENOKEY

Required key not available


.. data:: EKEYEXPIRED

Key has expired


.. data:: EKEYREVOKED

Key has been revoked


.. data:: EKEYREJECTED

Key was rejected by service


.. data:: ERFKILL

Operation not possible due to RF-kill


.. data:: ELOCKUNMAPPED

Locked lock was unmapped


.. data:: ENOTACTIVE

Facility is not active


.. data:: EAUTH

Authentication error


.. data:: EBADARCH

Bad CPU type in executable


.. data:: EBADEXEC

Bad executable (or shared library)


.. data:: EBADMACHO

Malformed Mach-o file

rruuaanng marked this conversation as resolved.
Show resolved Hide resolved

.. data:: EDEVERR

Device error


.. data:: EFTYPE

Inappropriate file type or format


.. data:: ENEEDAUTH

Need authenticator
rruuaanng marked this conversation as resolved.
Show resolved Hide resolved


.. data:: ENOATTR

Attribute not found


.. data:: ENOPOLICY

Policy not found


.. data:: EPROCLIM

Too many processes


.. data:: EPROCUNAVAIL

Bad procedure for program


.. data:: EPROGMISMATCH

Program version wrong


.. data:: EPROGUNAVAIL

RPC prog. not avail
rruuaanng marked this conversation as resolved.
Show resolved Hide resolved


.. data:: EPWROFF

Device power is off


.. data:: ERPCMISMATCH

RPC version wrong


.. data:: ESHLIBVERS

Shared library version mismatch


.. data:: ENOTCAPABLE

Capabilities insufficient. This error is mapped to the exception
Expand Down
Loading