summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-06-22 15:41:58 (GMT)
committerFred Drake <fdrake@acm.org>2001-06-22 15:41:58 (GMT)
commit9c573b027fc73842209263ab819e048f35603cbb (patch)
treecdcc0a73e8090ddac596628b2b5d071aa857796b
parent495739f8b2de68887204ec852f67c7ed4e2ecf1d (diff)
downloadcpython-9c573b027fc73842209263ab819e048f35603cbb.zip
cpython-9c573b027fc73842209263ab819e048f35603cbb.tar.gz
cpython-9c573b027fc73842209263ab819e048f35603cbb.tar.bz2
Properly mark the availability of tempnam() and tmpnam().
-rw-r--r--Doc/lib/libos.tex3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex
index f211f99..ca9a206 100644
--- a/Doc/lib/libos.tex
+++ b/Doc/lib/libos.tex
@@ -781,6 +781,7 @@ files if \var{dir} is omitted or \code{None}. If given and not
filename. Applications are responsible for properly creating and
managing files created using paths returned by \function{tempnam()};
no automatic cleanup is provided.
+Availability: \UNIX.
\end{funcdesc}
\begin{funcdesc}{tmpnam}{}
@@ -790,11 +791,13 @@ entry in a common location for temporary files. Applications are
responsible for properly creating and managing files created using
paths returned by \function{tmpnam()}; no automatic cleanup is
provided.
+Availability: \UNIX.
\end{funcdesc}
\begin{datadesc}{TMP_MAX}
The maximum number of unique names that \function{tmpnam()} will
generate before reusing names.
+Availability: \UNIX, Windows.
\end{datadesc}
\begin{funcdesc}{unlink}{path}