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

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


http://hg.python.org/cpython/rev/1cf1194a443e
changeset:   80570:1cf1194a443e
branch:      3.2
parent:      80566:654a628f5f00
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
@@ -2075,7 +2075,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