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(False) `` 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 @@ -791,14 +791,14 @@ Instances of the :class:`Popen` class have the following methods:
791
791
792
792
.. method :: Popen.terminate()
793
793
794
- Stop the child. On Posix OSs the method sends SIGTERM to the
794
+ Stop the child. On POSIX OSs the method sends SIGTERM to the
795
795
child. On Windows the Win32 API function :c:func: `TerminateProcess ` is called
796
796
to stop the child.
797
797
798
798
799
799
.. method :: Popen.kill()
800
800
801
- Kills the child. On Posix OSs the function sends SIGKILL to the child.
801
+ Kills the child. On POSIX OSs the function sends SIGKILL to the child.
802
802
On Windows :meth: `kill ` is an alias for :meth: `terminate `.
803
803
804
804
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