diff options
author | Guido van Rossum <guido@python.org> | 1995-03-17 16:07:09 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-03-17 16:07:09 (GMT) |
commit | 470be14c8aa23a35a1f4d1f1260a66a85d3f3cd9 (patch) | |
tree | 4fd0b8eda81e63366598e55362ceac85adafccb4 /Doc/libposix.tex | |
parent | 7760cdea81166b7741561043c58dae171811fb2f (diff) | |
download | cpython-470be14c8aa23a35a1f4d1f1260a66a85d3f3cd9.zip cpython-470be14c8aa23a35a1f4d1f1260a66a85d3f3cd9.tar.gz cpython-470be14c8aa23a35a1f4d1f1260a66a85d3f3cd9.tar.bz2 |
mass changes; fix titles; add examples; correct typos; clarifications;
unified style; etc.
Diffstat (limited to 'Doc/libposix.tex')
-rw-r--r-- | Doc/libposix.tex | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/Doc/libposix.tex b/Doc/libposix.tex index c749d74..ae041c4 100644 --- a/Doc/libposix.tex +++ b/Doc/libposix.tex @@ -1,12 +1,20 @@ \section{Built-in Module \sectcode{posix}} - \bimodindex{posix} This module provides access to operating system functionality that is standardized by the C Standard and the POSIX standard (a thinly disguised \UNIX{} interface). -It is available in all Python versions except on the Macintosh; -the MS-DOS version does not support certain functions. + +\strong{Do not import this module directly.} Instead, import the +module \code{os}, which provides a \emph{portable} version of this +interface. On \UNIX{}, the \code{os} module provides a superset of +the \code{posix} interface. On non-\UNIX{} operating systems the +\code{posix} module is not available, but a subset is always available +through the \code{os} interface. Once \code{os} is imported, there is +\emph{no} performance penalty in using it instead of +\code{posix}. +\stmodindex{os} + The descriptions below are very terse; refer to the corresponding \UNIX{} manual entry for more information. @@ -20,13 +28,18 @@ Module \code{posix} defines the following data items: \begin{datadesc}{environ} A dictionary representing the string environment at the time the interpreter was started. -(Modifying this dictionary does not affect the string environment of the -interpreter.) For example, \code{posix.environ['HOME']} is the pathname of your home directory, equivalent to \code{getenv("HOME")} in C. +Modifying this dictionary does not affect the string environment +passed on by \code{execv()}, \code{popen()} or \code{system()}; if you +need to change the environment, pass \code{environ} to \code{execve()} +or add variable assignments and export statements to the command +string for \code{system()} or \code{popen()}.% +\footnote{The problem with automatically passing on \code{environ} is +that there is no portable way of changing the environment.} \end{datadesc} \renewcommand{\indexsubitem}{(exception in module posix)} |