diff options
author | Mathieu Dupuy <mathieu.dupuy@doctolib.com> | 2020-05-17 21:29:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-17 21:29:51 (GMT) |
commit | 65460565df99fbda6a74b6bb4bf99affaaf8bd95 (patch) | |
tree | ee7273e03bd25bb78eeaab20c04f2d99177a7741 /Doc/library/subprocess.rst | |
parent | 4eba67783eb2084b2dad875ed1cbffdaf8a9202e (diff) | |
download | cpython-65460565df99fbda6a74b6bb4bf99affaaf8bd95.zip cpython-65460565df99fbda6a74b6bb4bf99affaaf8bd95.tar.gz cpython-65460565df99fbda6a74b6bb4bf99affaaf8bd95.tar.bz2 |
Doc: change 'Posix' for 'POSIX' (GH-20001)
Diffstat (limited to 'Doc/library/subprocess.rst')
-rw-r--r-- | Doc/library/subprocess.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index e5dbfe4..5988bd3 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -791,14 +791,14 @@ Instances of the :class:`Popen` class have the following methods: .. method:: Popen.terminate() - Stop the child. On Posix OSs the method sends SIGTERM to the + Stop the child. On POSIX OSs the method sends SIGTERM to the child. On Windows the Win32 API function :c:func:`TerminateProcess` is called to stop the child. .. method:: Popen.kill() - Kills the child. On Posix OSs the function sends SIGKILL to the child. + Kills the child. On POSIX OSs the function sends SIGKILL to the child. On Windows :meth:`kill` is an alias for :meth:`terminate`. |