Issue 20787: typo in asyncio docs for subprocess_exec() (original) (raw)

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:59 admin set github: 64986
2014-03-13 09:51:31 python-dev set status: open -> closednosy: + python-devmessages: + resolution: fixedstage: patch review -> resolved
2014-03-13 09:27:58 eric.araujo set keywords: + needs reviewnosy: + vstinnerstage: patch review
2014-02-26 22:27:38 akira create