mirror of https://github.com/python/cpython
bpo-40707: Document that Popen.communicate sets the returncode attribute (GH-20283)
This commit is contained in:
parent
cde283d16d
commit
bf2e515fa4
|
@ -738,10 +738,11 @@ Instances of the :class:`Popen` class have the following methods:
|
||||||
.. method:: Popen.communicate(input=None, timeout=None)
|
.. method:: Popen.communicate(input=None, timeout=None)
|
||||||
|
|
||||||
Interact with process: Send data to stdin. Read data from stdout and stderr,
|
Interact with process: Send data to stdin. Read data from stdout and stderr,
|
||||||
until end-of-file is reached. Wait for process to terminate. The optional
|
until end-of-file is reached. Wait for process to terminate and set the
|
||||||
*input* argument should be data to be sent to the child process, or
|
:attr:`~Popen.returncode` attribute. The optional *input* argument should be
|
||||||
``None``, if no data should be sent to the child. If streams were opened in
|
data to be sent to the child process, or ``None``, if no data should be sent
|
||||||
text mode, *input* must be a string. Otherwise, it must be bytes.
|
to the child. If streams were opened in text mode, *input* must be a string.
|
||||||
|
Otherwise, it must be bytes.
|
||||||
|
|
||||||
:meth:`communicate` returns a tuple ``(stdout_data, stderr_data)``.
|
:meth:`communicate` returns a tuple ``(stdout_data, stderr_data)``.
|
||||||
The data will be strings if streams were opened in text mode; otherwise,
|
The data will be strings if streams were opened in text mode; otherwise,
|
||||||
|
|
Loading…
Reference in New Issue