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.
319319
320320In Python, you use ``socket.setblocking(0) `` to make it non-blocking. In C, it's
321321more 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
323323is completely different from ``TCP_NODELAY ``), but it's the exact same idea. You
324324do this after creating the socket, but before using it. (Actually, if you're
325325nuts, 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:
711711
712712.. method :: Popen.terminate()
713713
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
715715 child. On Windows the Win32 API function :c:func: `TerminateProcess ` is called
716716 to stop the child.
717717
718718
719719.. method :: Popen.kill()
720720
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.
722722 On Windows :meth: `kill ` is an alias for :meth: `terminate `.
723723
724724
Original file line number Diff line number Diff line change @@ -74,12 +74,12 @@ places.
7474
7575Python 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.
You can’t perform that action at this time.
0 commit comments