]> granicus.if.org Git - python/commitdiff
Added availability notes for samefile(), sameopenfile(), samestat()
authorFred Drake <fdrake@acm.org>
Mon, 15 Feb 1999 16:34:00 +0000 (16:34 +0000)
committerFred Drake <fdrake@acm.org>
Mon, 15 Feb 1999 16:34:00 +0000 (16:34 +0000)
since these are not available on Windows.

Doc/lib/libposixpath.tex

index b4e1c5a09c28c9f0d6e2eb7c938951144a47e3b0..e467e4662365cdd919af3feb64f6e66263871b99 100644 (file)
@@ -135,12 +135,14 @@ Return true if both pathname arguments refer to the same file or
 directory (as indicated by device number and i-node number).
 Raise an exception if a \function{os.stat()} call on either pathname
 fails.
+Availability:  Macintosh, \UNIX{}.
 \end{funcdesc}
 
 \begin{funcdesc}{sameopenfile}{fp1, fp2}
 Return true if the file objects \var{fp1} and \var{fp2} refer to the
 same file.  The two file objects may represent different file
 descriptors.
+Availability:  Macintosh, \UNIX{}.
 \end{funcdesc}
 
 \begin{funcdesc}{samestat}{stat1, stat2}
@@ -149,6 +151,7 @@ the same file.  These structures may have been returned by
 \function{fstat()}, \function{lstat()}, or \function{stat()}.  This
 function implements the underlying comparison used by
 \function{samefile()} and \function{sameopenfile()}.
+Availability:  Macintosh, \UNIX{}.
 \end{funcdesc}
 
 \begin{funcdesc}{split}{path}