]> granicus.if.org Git - python/commitdiff
asyncio doc: reorder methods; typo
authorVictor Stinner <victor.stinner@gmail.com>
Tue, 3 Dec 2013 00:59:38 +0000 (01:59 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Tue, 3 Dec 2013 00:59:38 +0000 (01:59 +0100)
Doc/library/asyncio-protocol.rst
Doc/library/asyncio-task.rst

index ae9c64084fc123b9e31059eb790490cfa26c0cde..e3a56568a6f95d984330593a9b110454e12703d0 100644 (file)
@@ -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
 ------------
index 954143883dcfb312d0ae1fadc93254f9aec7309e..e55f962d857da995a5a82173b94bfb7961e3ecb3 100644 (file)
@@ -199,7 +199,7 @@ Task functions
    or ``None``, there is no limit to the wait time.
 
    *return_when* indicates when this function should return.  It must be one of
-   the following constants of the :mod`concurrent.futures` module:
+   the following constants of the :mod:`concurrent.futures` module:
 
    .. tabularcolumns:: |l|L|