]> granicus.if.org Git - python/commitdiff
Close #21005: Fix documentation of asyncio.subprocess.DEVNULL
authorVictor Stinner <victor.stinner@gmail.com>
Fri, 21 Mar 2014 10:44:49 +0000 (11:44 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Fri, 21 Mar 2014 10:44:49 +0000 (11:44 +0100)
Doc/library/asyncio-subprocess.rst

index 44ef50471488bfcf8227adedad2a636dc73a3b3f..26bc629452b97cfe0b784a56086213fc6e70da70 100644 (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