File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -319,7 +319,7 @@ inside-out.
319
319
320
320
In Python, you use ``socket.setblocking(0) `` to make it non-blocking. In C, it's
321
321
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
323
323
is completely different from ``TCP_NODELAY ``), but it's the exact same idea. You
324
324
do this after creating the socket, but before using it. (Actually, if you're
325
325
nuts, you can switch back and forth.)
Original file line number Diff line number Diff line change @@ -711,14 +711,14 @@ Instances of the :class:`Popen` class have the following methods:
711
711
712
712
.. method :: Popen.terminate()
713
713
714
- Stop the child. On Posix OSs the method sends SIGTERM to the
714
+ Stop the child. On POSIX OSs the method sends SIGTERM to the
715
715
child. On Windows the Win32 API function :c:func: `TerminateProcess ` is called
716
716
to stop the child.
717
717
718
718
719
719
.. method :: Popen.kill()
720
720
721
- Kills the child. On Posix OSs the function sends SIGKILL to the child.
721
+ Kills the child. On POSIX OSs the function sends SIGKILL to the child.
722
722
On Windows :meth: `kill ` is an alias for :meth: `terminate `.
723
723
724
724
Original file line number Diff line number Diff line change @@ -74,12 +74,12 @@ places.
74
74
75
75
Python currently supports seven schemes:
76
76
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
78
78
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
80
80
upon installation. This scheme is used when a component is installed through
81
81
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
83
83
through Distutils and the *user * option is used. This scheme defines paths
84
84
located under the user home directory.
85
85
- *nt *: scheme for NT platforms like Windows.
You can’t perform that action at this time.
0 commit comments