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: asyncio.docs : asyncio.subprocess.Process.wait() method typo
Type: enhancement Stage:
Components: Documentation Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: ajaborsk, docs@python, python-dev, vstinner
Priority: normal Keywords:

Created on 2014-03-16 20:17 by ajaborsk, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg213753 - (view) Author: Alexandre JABORSKA (ajaborsk) Date: 2014-03-16 20:17
The asyncio.subprocess.Process.wait() documentation mention "self" parameter (typo ?) and don't tell it's a coroutine.
msg213754 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-03-16 20:29
New changeset 1009cf8cb304 by Victor Stinner in branch 'default':
Issue #20950: Fix typo asyncio doc, wait() has no self parameter
http://hg.python.org/cpython/rev/1009cf8cb304
msg213755 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2014-03-16 20:30
Thanks, it has been fixed (in 12 minutes ;-)). I also mentionned that communicate() and wait() are coroutines.
History
Date User Action Args
2022-04-11 14:58:00adminsetgithub: 65149
2014-03-16 20:30:33vstinnersetstatus: open -> closed

nosy: + vstinner
messages: + msg213755

resolution: fixed
2014-03-16 20:29:53python-devsetnosy: + python-dev
messages: + msg213754
2014-03-16 20:17:10ajaborskcreate