From: Victor Stinner <victor.stinner@gmail.com> Date: Fri, 21 Mar 2014 10:44:49 +0000 (+0100) Subject: Close #21005: Fix documentation of asyncio.subprocess.DEVNULL X-Git-Tag: v3.4.1rc1~208 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7280486ce34266047a54310435299de045c4d07f;p=python Close #21005: Fix documentation of asyncio.subprocess.DEVNULL --- diff --git a/Doc/library/asyncio-subprocess.rst b/Doc/library/asyncio-subprocess.rst index 44ef504714..26bc629452 100644 --- a/Doc/library/asyncio-subprocess.rst +++ b/Doc/library/asyncio-subprocess.rst @@ -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