(original) (raw)

changeset: 89905:230510d0cb92 branch: 3.4 parent: 89902:09fd93f7ce02 user: Victor Stinner victor.stinner@gmail.com date: Fri Mar 21 11:44:49 2014 +0100 files: Doc/library/asyncio-subprocess.rst description: Close #21005: Fix documentation of asyncio.subprocess.DEVNULL diff -r 09fd93f7ce02 -r 230510d0cb92 Doc/library/asyncio-subprocess.rst --- a/Doc/library/asyncio-subprocess.rst Fri Mar 21 11:02:10 2014 -0400 +++ b/Doc/library/asyncio-subprocess.rst Fri Mar 21 11:44:49 2014 +0100 @@ -46,10 +46,9 @@ .. data:: asyncio.subprocess.DEVNULL - Special value that can be used as the *stderr* argument to - :func:`create_subprocess_shell` and :func:`create_subprocess_exec` and - indicates that standard error should go into the same handle as standard - output. + Special value that can be used as the *stdin*, *stdout* or *stderr* argument + to :func:`create_subprocess_shell` and :func:`create_subprocess_exec` and + indicates that the special file :data:`os.devnull` will be used. Process /victor.stinner@gmail.com