• Home
  • Raw
  • Download

Lines Matching full:process

70    wrappers for :attr:`Process.stdout` and :attr:`Process.stderr`
73 Return a :class:`~asyncio.subprocess.Process` instance.
88 wrappers for :attr:`Process.stdout` and :attr:`Process.stderr`
91 Return a :class:`~asyncio.subprocess.Process` instance.
132 :attr:`Process.stdin <asyncio.subprocess.Process.stdin>` attribute
136 :attr:`Process.stdout <asyncio.subprocess.Process.stdout>` and
137 :attr:`Process.stderr <asyncio.subprocess.Process.stderr>`
150 to process creation functions. It indicates that the special file
158 functions return instances of the *Process* class. *Process* is a high-level
162 .. class:: asyncio.subprocess.Process
173 * unlike Popen, Process instances do not have an equivalent to
176 * the :meth:`~asyncio.subprocess.Process.communicate` and
177 :meth:`~asyncio.subprocess.Process.wait` methods don't have a
180 * the :meth:`Process.wait() <asyncio.subprocess.Process.wait>` method
193 Wait for the child process to terminate.
200 ``stderr=PIPE`` and the child process generates so much output
207 Interact with process:
211 3. wait for process to terminate.
214 that will be sent to the child process.
220 exception is ignored. This condition occurs when the process
223 If it is desired to send data to the process' *stdin*,
224 the process needs to be created with ``stdin=PIPE``. Similarly,
226 process has to be created with ``stdout=PIPE`` and/or
234 Sends the signal *signal* to the child process.
245 Stop the child process.
248 child process.
251 called to stop the child process.
255 Kill the child process.
258 process.
265 if the process was created with ``stdin=None``.
270 if the process was created with ``stdout=None``.
275 if the process was created with ``stderr=None``.
280 :attr:`process.stdin.write() <stdin>`,
281 :attr:`await process.stdout.read() <stdout>` or
282 :attr:`await process.stderr.read() <stderr>`.
284 and blocking the child process.
288 Process identification number (PID).
295 Return code of the process when it exits.
297 A ``None`` value indicates that the process has not terminated yet.
338 An example using the :class:`~asyncio.subprocess.Process` class to