[Python-checkins] cpython (2.7): #16530: the "options" arg of os.wait3 is required.

ezio.melotti python-checkins at python.org
Fri Nov 23 18:47:03 CET 2012


http://hg.python.org/cpython/rev/a2038edb51cd
changeset:   80569:a2038edb51cd
branch:      2.7
parent:      80565:6a79e3beb854
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Fri Nov 23 19:45:52 2012 +0200
summary:
  #16530: the "options" arg of os.wait3 is required.

files:
  Doc/library/os.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/os.rst b/Doc/library/os.rst
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -2226,7 +2226,7 @@
    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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list