summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncio-eventloop.rst
diff options
context:
space:
mode:
authorsbstp <sbstp@users.noreply.github.com>2019-05-27 23:51:19 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-05-27 23:51:19 (GMT)
commitf0d4c64019ecf8a5f362aa5a478786241613e5c3 (patch)
treeba78feaf8749f5ddc5ad66fb369aba3a90d1567d /Doc/library/asyncio-eventloop.rst
parenta3568417c49f36860393075b21c93996a5f6799b (diff)
downloadcpython-f0d4c64019ecf8a5f362aa5a478786241613e5c3.zip
cpython-f0d4c64019ecf8a5f362aa5a478786241613e5c3.tar.gz
cpython-f0d4c64019ecf8a5f362aa5a478786241613e5c3.tar.bz2
bpo-36686: Improve the documentation of the std* params in loop.subprocess_exec (GH-13586)
https://bugs.python.org/issue36686
Diffstat (limited to 'Doc/library/asyncio-eventloop.rst')
-rw-r--r--Doc/library/asyncio-eventloop.rst68
1 files changed, 44 insertions, 24 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst
index 06f673b..4acd23f 100644
--- a/Doc/library/asyncio-eventloop.rst
+++ b/Doc/library/asyncio-eventloop.rst
@@ -1217,32 +1217,52 @@ async/await code consider using the high-level
Other parameters:
- * *stdin*: either a file-like object representing a pipe to be
- connected to the subprocess's standard input stream using
- :meth:`~loop.connect_write_pipe`, or the
- :const:`subprocess.PIPE` constant (default). By default a new
- pipe will be created and connected.
-
- * *stdout*: either a file-like object representing the pipe to be
- connected to the subprocess's standard output stream using
- :meth:`~loop.connect_read_pipe`, or the
- :const:`subprocess.PIPE` constant (default). By default a new pipe
- will be created and connected.
-
- * *stderr*: either a file-like object representing the pipe to be
- connected to the subprocess's standard error stream using
- :meth:`~loop.connect_read_pipe`, or one of
- :const:`subprocess.PIPE` (default) or :const:`subprocess.STDOUT`
- constants.
-
- By default a new pipe will be created and connected. When
- :const:`subprocess.STDOUT` is specified, the subprocess' standard
- error stream will be connected to the same pipe as the standard
- output stream.
+ * *stdin* can be any of these:
+
+ * a file-like object representing a pipe to be connected to the
+ subprocess's standard input stream using
+ :meth:`~loop.connect_write_pipe`
+ * the :const:`subprocess.PIPE` constant (default) which will create a new
+ pipe and connect it,
+ * the value ``None`` which will make the subprocess inherit the file
+ descriptor from this process
+ * the :const:`subprocess.DEVNULL` constant which indicates that the
+ special :data:`os.devnull` file will be used
+
+ * *stdout* can be any of these:
+
+ * a file-like object representing a pipe to be connected to the
+ subprocess's standard output stream using
+ :meth:`~loop.connect_write_pipe`
+ * the :const:`subprocess.PIPE` constant (default) which will create a new
+ pipe and connect it,
+ * the value ``None`` which will make the subprocess inherit the file
+ descriptor from this process
+ * the :const:`subprocess.DEVNULL` constant which indicates that the
+ special :data:`os.devnull` file will be used
+
+ * *stderr* can be any of these:
+
+ * a file-like object representing a pipe to be connected to the
+ subprocess's standard error stream using
+ :meth:`~loop.connect_write_pipe`
+ * the :const:`subprocess.PIPE` constant (default) which will create a new
+ pipe and connect it,
+ * the value ``None`` which will make the subprocess inherit the file
+ descriptor from this process
+ * the :const:`subprocess.DEVNULL` constant which indicates that the
+ special :data:`os.devnull` file will be used
+ * the :const:`subprocess.STDOUT` constant which will connect the standard
+ error stream to the process' standard output stream
* All other keyword arguments are passed to :class:`subprocess.Popen`
- without interpretation, except for *bufsize*, *universal_newlines*
- and *shell*, which should not be specified at all.
+ without interpretation, except for *bufsize*, *universal_newlines*,
+ *shell*, *text*, *encoding* and *errors*, which should not be specified
+ at all.
+
+ The ``asyncio`` subprocess API does not support decoding the streams
+ as text. :func:`bytes.decode` can be used to convert the bytes returned
+ from the stream to text.
See the constructor of the :class:`subprocess.Popen` class
for documentation on other arguments.