[issue20787] typo in asyncio docs for subprocess_exec()

2014-03-13 Thread Roundup Robot
Roundup Robot added the comment: 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 -- nosy: +python-dev resolution: -> fixed stage: patch review -> committed/reject

[issue20787] typo in asyncio docs for subprocess_exec()

2014-03-13 Thread Éric Araujo
Changes by Éric Araujo : -- keywords: +needs review nosy: +haypo stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list m

[issue20787] typo in asyncio docs for subprocess_exec()

2014-02-26 Thread akira
New submission from akira: 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. -- ass