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: typo in asyncio docs for subprocess_exec()
Type: Stage: resolved
Components: Documentation Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: akira, docs@python, python-dev, vstinner
Priority: normal Keywords: needs review, patch

Created on 2014-02-26 22:27 by akira, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
typo-subprocess_exec-docs.patch akira, 2014-02-26 22:27 s/write/read/ for stdout review
Messages (2)
msg212316 - (view) Author: Akira Li (akira) * Date: 2014-02-26 22:27
subprocess' stdout pipe is open for *reading* but its value is documented as an argument for `BaseEventLoop.connect_write_pipe`. It should be `BaseEventLoop.connect_read_pipe` instead. As it currently is for subprocess' stderr.

The patch is attached.
msg213375 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-03-13 09:51
New changeset 7a42fb12a736 by Victor Stinner in branch 'default':
Close #20787: asyncio doc: fix typo. Patch written by akira.
http://hg.python.org/cpython/rev/7a42fb12a736
History
Date User Action Args
2022-04-11 14:57:59adminsetgithub: 64986
2014-03-13 09:51:31python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg213375

resolution: fixed
stage: patch review -> resolved
2014-03-13 09:27:58eric.araujosetkeywords: + needs review
nosy: + vstinner

stage: patch review
2014-02-26 22:27:38akiracreate