diff options
author | Fred Drake <fdrake@acm.org> | 2000-08-11 20:19:51 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-08-11 20:19:51 (GMT) |
commit | 3ac977e39c9185c34228e871485df8060d7d0c07 (patch) | |
tree | e6048f66d044ea9ea16bfc13864834e1fa0e3e3e /Doc | |
parent | 241551c16c5222914fc8904889e08e15a40ada9d (diff) | |
download | cpython-3ac977e39c9185c34228e871485df8060d7d0c07.zip cpython-3ac977e39c9185c34228e871485df8060d7d0c07.tar.gz cpython-3ac977e39c9185c34228e871485df8060d7d0c07.tar.bz2 |
O_BINARY: Documented this constant; omission noted by David Ascher.
access(): Corrected availability statement; error pointed out by
Tim Peters.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libos.tex | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex index aa8c7d5..d0571af 100644 --- a/Doc/lib/libos.tex +++ b/Doc/lib/libos.tex @@ -475,6 +475,13 @@ These can be bit-wise OR'd together. Availability: Macintosh, \UNIX{}, Windows. \end{datadesc} +\begin{datadesc}{O_BINARY} +Option for the \var{flag} argument to the \function{open()} function. +This can be bit-wise OR'd together with those listed above. +Availability: Macintosh, Windows. +% XXX need to check on the availability of this one. +\end{datadesc} + \subsection{Files and Directories \label{os-file-dir}} @@ -485,7 +492,7 @@ existence of \var{path}, or it can be the inclusive OR of one or more of \constant{R_OK}, \constant{W_OK}, and \constant{X_OK} to test permissions. Return \code{1} if access is allowed, \code{0} if not. See the \UNIX{} man page \manpage{access}{2} for more information. -Availability: \UNIX{}. +Availability: \UNIX{}, Windows. \end{funcdesc} \begin{datadesc}{F_OK} |