]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Doc: change 'Posix' for 'POSIX' (GH-20001)
authorMathieu Dupuy <mathieu.dupuy@doctolib.com>
Sun, 17 May 2020 21:29:51 +0000 (21:29 +0000)
committerGitHub <noreply@github.com>
Sun, 17 May 2020 21:29:51 +0000 (23:29 +0200)
Doc/howto/sockets.rst
Doc/library/subprocess.rst
Doc/library/sysconfig.rst

index 4655f2806089608c3c26379f2c6b97f91e4430f6..d6ed128e073fd682c0b0282fd495396121826e1c 100644 (file)
@@ -319,7 +319,7 @@ inside-out.
 
 In Python, you use ``socket.setblocking(False)`` to make it non-blocking. In C, it's
 more complex, (for one thing, you'll need to choose between the BSD flavor
-``O_NONBLOCK`` and the almost indistinguishable Posix flavor ``O_NDELAY``, which
+``O_NONBLOCK`` and the almost indistinguishable POSIX flavor ``O_NDELAY``, which
 is completely different from ``TCP_NODELAY``), but it's the exact same idea. You
 do this after creating the socket, but before using it. (Actually, if you're
 nuts, you can switch back and forth.)
index e5dbfe42809fa1c94323825363609372d6cfc10a..5988bd35e72b1232fcd8747378e7b7a1f0467594 100644 (file)
@@ -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`.
 
 
index b5a1da80c686d40728dddc9c7ad2355c56342c7b..78a1dfce9ae05cd799e1c4b2a30f00384f7d0a29 100644 (file)
@@ -74,12 +74,12 @@ places.
 
 Python currently supports seven schemes:
 
-- *posix_prefix*: scheme for Posix platforms like Linux or Mac OS X.  This is
+- *posix_prefix*: scheme for POSIX platforms like Linux or Mac OS X.  This is
   the default scheme used when Python or a component is installed.
-- *posix_home*: scheme for Posix platforms used when a *home* option is used
+- *posix_home*: scheme for POSIX platforms used when a *home* option is used
   upon installation.  This scheme is used when a component is installed through
   Distutils with a specific home prefix.
-- *posix_user*: scheme for Posix platforms used when a component is installed
+- *posix_user*: scheme for POSIX platforms used when a component is installed
   through Distutils and the *user* option is used.  This scheme defines paths
   located under the user home directory.
 - *nt*: scheme for NT platforms like Windows.