@@ -68,7 +68,7 @@ Creating Subprocesses
68
68
Create a subprocess.
69
69
70
70
The *limit * argument sets the buffer limit for :class: `StreamReader `
71
- wrappers for :attr: `Process.stdout ` and :attr: `Process.stderr `
71
+ wrappers for :attr: `~asyncio.subprocess. Process.stdout ` and :attr: `~asyncio.subprocess. Process.stderr `
72
72
(if :const: `subprocess.PIPE ` is passed to *stdout * and *stderr * arguments).
73
73
74
74
Return a :class: `~asyncio.subprocess.Process ` instance.
@@ -87,7 +87,7 @@ Creating Subprocesses
87
87
Run the *cmd * shell command.
88
88
89
89
The *limit * argument sets the buffer limit for :class: `StreamReader `
90
- wrappers for :attr: `Process.stdout ` and :attr: `Process.stderr `
90
+ wrappers for :attr: `~asyncio.subprocess. Process.stdout ` and :attr: `~asyncio.subprocess. Process.stderr `
91
91
(if :const: `subprocess.PIPE ` is passed to *stdout * and *stderr * arguments).
92
92
93
93
Return a :class: `~asyncio.subprocess.Process ` instance.
@@ -132,12 +132,12 @@ Constants
132
132
133
133
If *PIPE * is passed to *stdin * argument, the
134
134
:attr: `Process.stdin <asyncio.subprocess.Process.stdin> ` attribute
135
- will point to a :class: `StreamWriter ` instance.
135
+ will point to a :class: `~asyncio. StreamWriter ` instance.
136
136
137
137
If *PIPE * is passed to *stdout * or *stderr * arguments, the
138
138
:attr: `Process.stdout <asyncio.subprocess.Process.stdout> ` and
139
139
:attr: `Process.stderr <asyncio.subprocess.Process.stderr> `
140
- attributes will point to :class: `StreamReader ` instances.
140
+ attributes will point to :class: `~asyncio. StreamReader ` instances.
141
141
142
142
.. data :: asyncio.subprocess.STDOUT
143
143
:module:
@@ -165,7 +165,7 @@ their completion.
165
165
:module:
166
166
167
167
An object that wraps OS processes created by the
168
- :func: `create_subprocess_exec ` and :func: `create_subprocess_shell `
168
+ :func: `~asyncio. create_subprocess_exec ` and :func: `~asyncio. create_subprocess_shell `
169
169
functions.
170
170
171
171
This class is designed to have a similar API to the
@@ -263,24 +263,24 @@ their completion.
263
263
264
264
Kill the child process.
265
265
266
- On POSIX systems this method sends :py:data: `SIGKILL ` to the child
266
+ On POSIX systems this method sends :py:data: `~signal. SIGKILL ` to the child
267
267
process.
268
268
269
269
On Windows this method is an alias for :meth: `terminate `.
270
270
271
271
.. attribute :: stdin
272
272
273
- Standard input stream (:class: `StreamWriter `) or ``None ``
273
+ Standard input stream (:class: `~asyncio. StreamWriter `) or ``None ``
274
274
if the process was created with ``stdin=None ``.
275
275
276
276
.. attribute :: stdout
277
277
278
- Standard output stream (:class: `StreamReader `) or ``None ``
278
+ Standard output stream (:class: `~asyncio. StreamReader `) or ``None ``
279
279
if the process was created with ``stdout=None ``.
280
280
281
281
.. attribute :: stderr
282
282
283
- Standard error stream (:class: `StreamReader `) or ``None ``
283
+ Standard error stream (:class: `~asyncio. StreamReader `) or ``None ``
284
284
if the process was created with ``stderr=None ``.
285
285
286
286
.. warning ::
@@ -296,7 +296,7 @@ their completion.
296
296
297
297
Process identification number (PID).
298
298
299
- Note that for processes created by the :func: `create_subprocess_shell `
299
+ Note that for processes created by the :func: `~asyncio. create_subprocess_shell `
300
300
function, this attribute is the PID of the spawned shell.
301
301
302
302
.. attribute :: returncode
0 commit comments