diff options
author | qqwqqw689 <114795525+qqwqqw689@users.noreply.github.com> | 2023-08-27 05:19:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-27 05:19:49 (GMT) |
commit | 1ac64237e6ce965064451ed57ae37271aeb9fbd3 (patch) | |
tree | 60115f63fec832edf3f8bb3a8855f7f9764f25ef | |
parent | 6cb48f049501c9f8c5be107e52f8eb359b5ac533 (diff) | |
download | cpython-1ac64237e6ce965064451ed57ae37271aeb9fbd3.zip cpython-1ac64237e6ce965064451ed57ae37271aeb9fbd3.tar.gz cpython-1ac64237e6ce965064451ed57ae37271aeb9fbd3.tar.bz2 |
gh-107453: Document errno.{ECANCELED,EOWNERDEAD,ENOTRECOVERABLE,ENOTSUP} (#107486)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
-rw-r--r-- | Doc/library/errno.rst | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Doc/library/errno.rst b/Doc/library/errno.rst index 5122c69..283e8b0 100644 --- a/Doc/library/errno.rst +++ b/Doc/library/errno.rst @@ -511,6 +511,13 @@ defined by the module. The specific list of defined symbols is available as Operation not supported on transport endpoint +.. data:: ENOTSUP + + Operation not supported + + .. versionadded:: 3.2 + + .. data:: EPFNOSUPPORT Protocol family not supported @@ -666,3 +673,24 @@ defined by the module. The specific list of defined symbols is available as .. availability:: WASI, FreeBSD .. versionadded:: 3.11.1 + + +.. data:: ECANCELED + + Operation canceled + + .. versionadded:: 3.2 + + +.. data:: EOWNERDEAD + + Owner died + + .. versionadded:: 3.2 + + +.. data:: ENOTRECOVERABLE + + State not recoverable + + .. versionadded:: 3.2 |