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 @@ -755,14 +755,14 @@ Instances of the :class:`Popen` class have the following methods:
755
755
756
756
.. method :: Popen.terminate()
757
757
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
759
759
child. On Windows the Win32 API function :c:func: `TerminateProcess ` is called
760
760
to stop the child.
761
761
762
762
763
763
.. method :: Popen.kill()
764
764
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.
766
766
On Windows :meth: `kill ` is an alias for :meth: `terminate `.
767
767
768
768
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