Skip to content

Commit 7a3522d

Browse files
miss-islingtonMathieu Dupuy
and
Mathieu Dupuy
authored
Doc: change 'Posix' for 'POSIX' (GH-20001)
(cherry picked from commit 6546056) Co-authored-by: Mathieu Dupuy <mathieu.dupuy@doctolib.com>
1 parent b1e23f3 commit 7a3522d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Doc/howto/sockets.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ inside-out.
319319

320320
In Python, you use ``socket.setblocking(0)`` to make it non-blocking. In C, it's
321321
more complex, (for one thing, you'll need to choose between the BSD flavor
322-
``O_NONBLOCK`` and the almost indistinguishable Posix flavor ``O_NDELAY``, which
322+
``O_NONBLOCK`` and the almost indistinguishable POSIX flavor ``O_NDELAY``, which
323323
is completely different from ``TCP_NODELAY``), but it's the exact same idea. You
324324
do this after creating the socket, but before using it. (Actually, if you're
325325
nuts, you can switch back and forth.)

Doc/library/subprocess.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -755,14 +755,14 @@ Instances of the :class:`Popen` class have the following methods:
755755

756756
.. method:: Popen.terminate()
757757

758-
Stop the child. On Posix OSs the method sends SIGTERM to the
758+
Stop the child. On POSIX OSs the method sends SIGTERM to the
759759
child. On Windows the Win32 API function :c:func:`TerminateProcess` is called
760760
to stop the child.
761761

762762

763763
.. method:: Popen.kill()
764764

765-
Kills the child. On Posix OSs the function sends SIGKILL to the child.
765+
Kills the child. On POSIX OSs the function sends SIGKILL to the child.
766766
On Windows :meth:`kill` is an alias for :meth:`terminate`.
767767

768768

Doc/library/sysconfig.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ places.
7474

7575
Python currently supports seven schemes:
7676

77-
- *posix_prefix*: scheme for Posix platforms like Linux or Mac OS X. This is
77+
- *posix_prefix*: scheme for POSIX platforms like Linux or Mac OS X. This is
7878
the default scheme used when Python or a component is installed.
79-
- *posix_home*: scheme for Posix platforms used when a *home* option is used
79+
- *posix_home*: scheme for POSIX platforms used when a *home* option is used
8080
upon installation. This scheme is used when a component is installed through
8181
Distutils with a specific home prefix.
82-
- *posix_user*: scheme for Posix platforms used when a component is installed
82+
- *posix_user*: scheme for POSIX platforms used when a component is installed
8383
through Distutils and the *user* option is used. This scheme defines paths
8484
located under the user home directory.
8585
- *nt*: scheme for NT platforms like Windows.

0 commit comments

Comments
 (0)