diff --git a/src/trio/_subprocess.py b/src/trio/_subprocess.py index 628c5dfc9..a6f1ee738 100644 --- a/src/trio/_subprocess.py +++ b/src/trio/_subprocess.py @@ -329,13 +329,13 @@ async def _open_process( want. Args: - command (str or bytes or Sequence[str] or Sequence[bytes]): The command to - run. Typically this is a sequence of strings or bytes such as ``['ls', - '-l', 'directory with spaces']``, where the first element names the - executable to invoke and the other elements specify its arguments. - With ``shell=True`` in the ``**options``, or on Windows, ``command`` - may alternatively be a string or bytes, which will be parsed following - platform-dependent :ref:`quoting rules `. + command: The command to run. Typically this is a sequence of strings or + bytes such as ``['ls', '-l', 'directory with spaces']``, where the + first element names the executable to invoke and the other elements + specify its arguments. With ``shell=True`` in the ``**options``, or on + Windows, ``command`` may alternatively be a string or bytes, which + will be parsed following platform-dependent :ref:`quoting rules + `. stdin: Specifies what the child process's standard input stream should connect to: output written by the parent (``subprocess.PIPE``), nothing (``subprocess.DEVNULL``),