summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-11-23 17:45:52 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-11-23 17:45:52 (GMT)
commitba4d8ed8f8d4fb999cdff94db7d6277d4a2042ac (patch)
tree7b200d67302c3dc93d2fa2c8c8958741083cdd2f
parenta0dd22e5e824195e322cb417ebb34c66475e952d (diff)
downloadcpython-ba4d8ed8f8d4fb999cdff94db7d6277d4a2042ac.zip
cpython-ba4d8ed8f8d4fb999cdff94db7d6277d4a2042ac.tar.gz
cpython-ba4d8ed8f8d4fb999cdff94db7d6277d4a2042ac.tar.bz2
#16530: the "options" arg of os.wait3 is required.
-rw-r--r--Doc/library/os.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index 9429810..abacd24 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -2075,7 +2075,7 @@ written in Python, such as a mail server's external command delivery program.
with :const:`P_NOWAIT` return suitable process handles.
-.. function:: wait3([options])
+.. function:: wait3(options)
Similar to :func:`waitpid`, except no process id argument is given and a
3-element tuple containing the child's process id, exit status indication, and