summaryrefslogtreecommitdiffstats
path: root/Doc/libposix.tex
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-08-08 21:05:09 (GMT)
committerGuido van Rossum <guido@python.org>1997-08-08 21:05:09 (GMT)
commit9c43c590bcd6107c91c0f9afc2ee4d73307dda30 (patch)
tree53abee8bab4645b8079b340e8b93b6dfac305a26 /Doc/libposix.tex
parent7d6b7d3f5451a97f0a87ef5e0b1d85660bf5a350 (diff)
downloadcpython-9c43c590bcd6107c91c0f9afc2ee4d73307dda30.zip
cpython-9c43c590bcd6107c91c0f9afc2ee4d73307dda30.tar.gz
cpython-9c43c590bcd6107c91c0f9afc2ee4d73307dda30.tar.bz2
More emphasis on os.environ's calling of putenv; and added hint about
flags for open().
Diffstat (limited to 'Doc/libposix.tex')
-rw-r--r--Doc/libposix.tex18
1 files changed, 14 insertions, 4 deletions
diff --git a/Doc/libposix.tex b/Doc/libposix.tex
index e545c7a..97756c7 100644
--- a/Doc/libposix.tex
+++ b/Doc/libposix.tex
@@ -13,7 +13,9 @@ 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}.
+\code{posix}. In addition, \code{os} provides some additional
+functionality, such as automatically calling \code{putenv()}
+when an entry is \code{os.environ} is changed.
\stmodindex{os}
The descriptions below are very terse; refer to the
@@ -35,13 +37,17 @@ For example,
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.}
+string for \code{system()} or \code{popen()}.
+
+\emph{However:} If you are using this module via the \code{os} module
+(as you should -- see the introduction above), \code{environ} is a
+a mapping object that behaves almost like a dictionary but invokes
+\code{putenv()} automatically called whenever an item is changed.
\end{datadesc}
\renewcommand{\indexsubitem}{(exception in module posix)}
@@ -238,6 +244,10 @@ The default \var{mode} is 0777 (octal), and the current umask value is
first masked out. Return the file descriptor for the newly opened
file.
+For a description of the flag and mode values, see the \UNIX{} or C
+run-time documentation; flag constants (like \code{O_RDONLY} and
+\code{O_WRONLY}) are defined in this module too (see below).
+
Note: this function is intended for low-level I/O. For normal usage,
use the built-in function \code{open}, which returns a ``file object''
with \code{read()} and \code{write()} methods (and many more).