diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-23 17:45:52 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-23 17:45:52 (GMT) |
commit | 56913b750018b379f08653d1f8b46d7f1e415142 (patch) | |
tree | ad7560c064aa40470e3982acf2368ea05ccc79b9 | |
parent | ec6486d52d89cea1362697dd0d92e127c188d298 (diff) | |
download | cpython-56913b750018b379f08653d1f8b46d7f1e415142.zip cpython-56913b750018b379f08653d1f8b46d7f1e415142.tar.gz cpython-56913b750018b379f08653d1f8b46d7f1e415142.tar.bz2 |
#16530: the "options" arg of os.wait3 is required.
-rw-r--r-- | Doc/library/os.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 02a9ecd..106c1df3 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -2226,7 +2226,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 |