summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-07-17 20:39:18 (GMT)
committerFred Drake <fdrake@acm.org>2001-07-17 20:39:18 (GMT)
commitefaef13c813599e4a219ffe13b6da137fe180672 (patch)
treebbc793b3154f5e55453688b94d5c4dd27895dd1d /Doc
parent78b71c2ad3a2b2ba3f883fc9d0e81247b441155c (diff)
downloadcpython-efaef13c813599e4a219ffe13b6da137fe180672.zip
cpython-efaef13c813599e4a219ffe13b6da137fe180672.tar.gz
cpython-efaef13c813599e4a219ffe13b6da137fe180672.tar.bz2
Update the availability information for os.tempnam(), os.tmpfile(), and
os.tmpnam().
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib/libos.tex4
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex
index 18760c7..b6e0bfa 100644
--- a/Doc/lib/libos.tex
+++ b/Doc/lib/libos.tex
@@ -304,7 +304,7 @@ Availability: \UNIX{}, Windows.
Return a new file object opened in update mode (\samp{w+}). The file
has no directory entries associated with it and will be automatically
deleted once there are no file descriptors for the file.
-Availability: \UNIX{}.
+Availability: \UNIX{}, Windows.
\end{funcdesc}
@@ -782,6 +782,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, Windows.
\end{funcdesc}
\begin{funcdesc}{tmpnam}{}
@@ -791,6 +792,7 @@ 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, Windows.
\end{funcdesc}
\begin{datadesc}{TMP_MAX}