From: Fred Drake Date: Fri, 22 Jun 2001 15:41:58 +0000 (+0000) Subject: Properly mark the availability of tempnam() and tmpnam(). X-Git-Tag: v2.1.1c1~70 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9c573b027fc73842209263ab819e048f35603cbb;p=thirdparty%2FPython%2Fcpython.git Properly mark the availability of tempnam() and tmpnam(). --- diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex index f211f99e6dfa..ca9a206d854c 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}