This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: documentation of os.wait3
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.2, Python 3.3, Python 3.4, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ezio.melotti Nosy List: docs@python, ezio.melotti, python-dev, quiver
Priority: low Keywords: easy

Created on 2012-11-22 16:28 by quiver, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg176112 - (view) Author: George Yoshida (quiver) (Python committer) Date: 2012-11-22 16:28
Documentation defines os.wait3 function as :
> os.wait3([options])
but, this argument is required(no default options are set), so
> os.wait3(options)
is the correct definition.

http://docs.python.org/3.3/library/os.html#os.wait3
msg176197 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-11-23 17:47
New changeset a2038edb51cd by Ezio Melotti in branch '2.7':
#16530: the "options" arg of os.wait3 is required.
http://hg.python.org/cpython/rev/a2038edb51cd

New changeset 1cf1194a443e by Ezio Melotti in branch '3.2':
#16530: the "options" arg of os.wait3 is required.
http://hg.python.org/cpython/rev/1cf1194a443e

New changeset 7359ade2ab0b by Ezio Melotti in branch '3.3':
#16530: merge with 3.2.
http://hg.python.org/cpython/rev/7359ade2ab0b

New changeset a728056347ec by Ezio Melotti in branch 'default':
#16530: merge with 3.3.
http://hg.python.org/cpython/rev/a728056347ec
msg176198 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2012-11-23 17:47
Fixed, thanks for the report!
History
Date User Action Args
2022-04-11 14:57:38adminsetgithub: 60734
2012-11-23 17:47:32ezio.melottisetstatus: open -> closed

assignee: docs@python -> ezio.melotti
versions: - Python 2.6, Python 3.1
nosy: + ezio.melotti

messages: + msg176198
resolution: fixed
stage: resolved
2012-11-23 17:47:02python-devsetnosy: + python-dev
messages: + msg176197
2012-11-22 16:28:58quivercreate