summaryrefslogtreecommitdiffstats
path: root/Doc/libposix.tex
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>1996-12-19 23:50:34 (GMT)
committerBarry Warsaw <barry@python.org>1996-12-19 23:50:34 (GMT)
commite5a43a405d6117bb6fc783366cb21912f9e2fd56 (patch)
tree3acf96e6edaa7ed8070f5bfaaf50939296e7fd40 /Doc/libposix.tex
parent4a342094689a5edf63a784e3a5e690d7044b099b (diff)
downloadcpython-e5a43a405d6117bb6fc783366cb21912f9e2fd56.zip
cpython-e5a43a405d6117bb6fc783366cb21912f9e2fd56.tar.gz
cpython-e5a43a405d6117bb6fc783366cb21912f9e2fd56.tar.bz2
Describe open(2) exported constants
Diffstat (limited to 'Doc/libposix.tex')
-rw-r--r--Doc/libposix.tex30
1 files changed, 30 insertions, 0 deletions
diff --git a/Doc/libposix.tex b/Doc/libposix.tex
index a0fccdd..4870c4f 100644
--- a/Doc/libposix.tex
+++ b/Doc/libposix.tex
@@ -431,3 +431,33 @@ its \code{write()} method.
The option for \code{waitpid()} to avoid hanging if no child process
status is available immediately.
\end{datadesc}
+
+
+\begin{datadesc}{O_RDONLY}
+\end{datadesc}
+\begin{datadesc}{O_WRONLY}
+\end{datadesc}
+\begin{datadesc}{O_RDWR}
+\end{datadesc}
+\begin{datadesc}{O_NDELAY}
+\end{datadesc}
+\begin{datadesc}{O_NONBLOCK}
+\end{datadesc}
+\begin{datadesc}{O_APPEND}
+\end{datadesc}
+\begin{datadesc}{O_DSYNC}
+\end{datadesc}
+\begin{datadesc}{O_RSYNC}
+\end{datadesc}
+\begin{datadesc}{O_SYNC}
+\end{datadesc}
+\begin{datadesc}{O_NOCTTY}
+\end{datadesc}
+\begin{datadesc}{O_CREAT}
+\end{datadesc}
+\begin{datadesc}{O_EXCL}
+\end{datadesc}
+\begin{datadesc}{O_TRUNC}
+Options for the \code{flag} argument to the \code{open()} function.
+These can be bit-wise OR'd together.
+\end{datadesc}