mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
asyncio doc: reorder methods; typo
This commit is contained in:
parent
1ca5ba611b
commit
933a8c82ce
2 changed files with 14 additions and 14 deletions
|
@ -192,12 +192,6 @@ BaseSubprocessTransport
|
|||
|
||||
Return the subprocess process id as an integer.
|
||||
|
||||
.. method:: get_returncode()
|
||||
|
||||
Return the subprocess returncode as an integer or :const:`None`
|
||||
if it hasn't returned, similarly to the
|
||||
:attr:`subprocess.Popen.returncode` attribute.
|
||||
|
||||
.. method:: get_pipe_transport(fd)
|
||||
|
||||
Return the transport for the communication pipe correspondong to the
|
||||
|
@ -206,6 +200,19 @@ BaseSubprocessTransport
|
|||
correspond to a pipe belonging to this transport, :const:`None` is
|
||||
returned.
|
||||
|
||||
.. method:: get_returncode()
|
||||
|
||||
Return the subprocess returncode as an integer or :const:`None`
|
||||
if it hasn't returned, similarly to the
|
||||
:attr:`subprocess.Popen.returncode` attribute.
|
||||
|
||||
.. method:: kill(self)
|
||||
|
||||
Kill the subprocess, as in :meth:`subprocess.Popen.kill`
|
||||
|
||||
On POSIX systems, the function sends SIGKILL to the subprocess.
|
||||
On Windows, this method is an alias for :meth:`terminate`.
|
||||
|
||||
.. method:: send_signal(signal)
|
||||
|
||||
Send the *signal* number to the subprocess, as in
|
||||
|
@ -220,13 +227,6 @@ BaseSubprocessTransport
|
|||
On Windows, the Windows API function TerminateProcess() is called to
|
||||
stop the subprocess.
|
||||
|
||||
.. method:: kill(self)
|
||||
|
||||
Kill the subprocess, as in :meth:`subprocess.Popen.kill`
|
||||
|
||||
On POSIX systems, the function sends SIGKILL to the subprocess.
|
||||
On Windows, this method is an alias for :meth:`terminate`.
|
||||
|
||||
|
||||
StreamWriter
|
||||
------------
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue