Close #21005: Fix documentation of asyncio.subprocess.DEVNULL

This commit is contained in:
Victor Stinner 2014-03-21 11:44:49 +01:00
parent 46f484ee4e
commit 7280486ce3
1 changed files with 3 additions and 4 deletions

View File

@ -46,10 +46,9 @@ Constants
.. 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