[Python-checkins] cpython: Close #21005: Fix documentation of asyncio.subprocess.DEVNULL

victor.stinner python-checkins at python.org
Fri Mar 21 11:46:36 CET 2014


http://hg.python.org/cpython/rev/70c77ff64df1
changeset:   89894:70c77ff64df1
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Fri Mar 21 11:44:49 2014 +0100
summary:
  Close #21005: Fix documentation of asyncio.subprocess.DEVNULL

files:
  Doc/library/asyncio-subprocess.rst |  7 +++----
  1 files changed, 3 insertions(+), 4 deletions(-)


diff --git a/Doc/library/asyncio-subprocess.rst b/Doc/library/asyncio-subprocess.rst
--- a/Doc/library/asyncio-subprocess.rst
+++ b/Doc/library/asyncio-subprocess.rst
@@ -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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list