[Python-checkins] cpython (3.4): Close #21005: Fix documentation of asyncio.subprocess.DEVNULL
victor.stinner
python-checkins at python.org
Fri Mar 21 17:16:22 CET 2014
http://hg.python.org/cpython/rev/230510d0cb92
changeset: 89905:230510d0cb92
branch: 3.4
parent: 89902:09fd93f7ce02
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