]> granicus.if.org Git - python/commitdiff
bpo-33649: Fix doc to reflect changes in 47cd10d (or bpo-23347) (GH-9219)
authorBumsik Kim <k.bumsik@gmail.com>
Wed, 12 Sep 2018 18:31:56 +0000 (14:31 -0400)
committerYury Selivanov <yury@magic.io>
Wed, 12 Sep 2018 18:31:56 +0000 (11:31 -0700)
Doc/library/asyncio-protocol.rst

index 348ced57772f24ea299555dd6cb2314aa4d16c5a..84a275e0d0b6443804424d36f826ac8e5604b07b 100644 (file)
@@ -406,7 +406,6 @@ Subprocess Transports
 .. method:: SubprocessTransport.terminate()
 
    Ask the subprocess to stop, as in :meth:`subprocess.Popen.terminate`.
-   This method is an alias for the :meth:`close` method.
 
    On POSIX systems, this method sends SIGTERM to the subprocess.
    On Windows, the Windows API function TerminateProcess() is called to
@@ -414,7 +413,7 @@ Subprocess Transports
 
 .. method:: SubprocessTransport.close()
 
-   Ask the subprocess to stop by calling the :meth:`terminate` method
+   Kill the subprocess by calling the :meth:`kill` method
    if the subprocess hasn't returned yet, and close transports of all
    pipes (*stdin*, *stdout* and *stderr*).