mirror of
https://github.com/python/cpython.git
synced 2025-11-01 10:45:30 +00:00
asyncio doc: protocol_factory of subprocess_exec() and subprocess_shell() must
instanciate a subclass of SubprocessProtocol
This commit is contained in:
parent
4270a24dd9
commit
3c95062f52
1 changed files with 6 additions and 0 deletions
|
|
@ -69,6 +69,9 @@ Run subprocesses asynchronously using the :mod:`subprocess` module.
|
|||
however, where :class:`~subprocess.Popen` takes a single argument which is
|
||||
list of strings, :func:`subprocess_exec` takes multiple string arguments.
|
||||
|
||||
The *protocol_factory* must instanciate a subclass of the
|
||||
:class:`asyncio.SubprocessProtocol` class.
|
||||
|
||||
Other parameters:
|
||||
|
||||
* *stdin*: Either a file-like object representing the pipe to be connected
|
||||
|
|
@ -109,6 +112,9 @@ Run subprocesses asynchronously using the :mod:`subprocess` module.
|
|||
using the platform's "shell" syntax. This is similar to the standard library
|
||||
:class:`subprocess.Popen` class called with ``shell=True``.
|
||||
|
||||
The *protocol_factory* must instanciate a subclass of the
|
||||
:class:`asyncio.SubprocessProtocol` class.
|
||||
|
||||
See :meth:`~BaseEventLoop.subprocess_exec` for more details about
|
||||
the remaining arguments.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue