mirror of
https://github.com/python/cpython.git
synced 2026-02-14 03:10:44 +00:00
[3.13] gh-90483: fix docs of SubprocessTransport.get_pipe_transport (GH-137852) (#137854)
gh-90483: fix docs of `SubprocessTransport.get_pipe_transport ` (GH-137852)
(cherry picked from commit 038a6e3b95)
Co-authored-by: Kumar Aditya <kumaraditya@python.org>
This commit is contained in:
parent
7f18b0e45d
commit
33a3f5e458
1 changed files with 3 additions and 3 deletions
|
|
@ -390,11 +390,11 @@ Subprocess Transports
|
|||
Return the transport for the communication pipe corresponding to the
|
||||
integer file descriptor *fd*:
|
||||
|
||||
* ``0``: readable streaming transport of the standard input (*stdin*),
|
||||
* ``0``: writable streaming transport of the standard input (*stdin*),
|
||||
or :const:`None` if the subprocess was not created with ``stdin=PIPE``
|
||||
* ``1``: writable streaming transport of the standard output (*stdout*),
|
||||
* ``1``: readable streaming transport of the standard output (*stdout*),
|
||||
or :const:`None` if the subprocess was not created with ``stdout=PIPE``
|
||||
* ``2``: writable streaming transport of the standard error (*stderr*),
|
||||
* ``2``: readable streaming transport of the standard error (*stderr*),
|
||||
or :const:`None` if the subprocess was not created with ``stderr=PIPE``
|
||||
* other *fd*: :const:`None`
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue