summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorSamuel Marks <807580+SamuelMarks@users.noreply.github.com>2021-06-24 16:45:18 (GMT)
committerGitHub <noreply@github.com>2021-06-24 16:45:18 (GMT)
commit19459f8ce63cc7f905e3c1a55d09d4d10d245343 (patch)
tree36e1f5ee148a11f845cdc5d22f75c1bad13105b3 /Doc/library
parent0acc258fe6f0ec200ca2f6f9294adbf52a244802 (diff)
downloadcpython-19459f8ce63cc7f905e3c1a55d09d4d10d245343.zip
cpython-19459f8ce63cc7f905e3c1a55d09d4d10d245343.tar.gz
cpython-19459f8ce63cc7f905e3c1a55d09d4d10d245343.tar.bz2
bpo-44321: Adds `os.EX_OK` for Windows (GH-26559)
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/os.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index 4b249ed..d3ca8c0 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -3656,9 +3656,10 @@ written in Python, such as a mail server's external command delivery program.
.. data:: EX_OK
- Exit code that means no error occurred.
+ Exit code that means no error occurred. May be taken from the defined value of
+ ``EXIT_SUCCESS`` on some platforms. Generally has a value of zero.
- .. availability:: Unix.
+ .. availability:: Unix, Windows.
.. data:: EX_USAGE