diff options
author | Fred Drake <fdrake@acm.org> | 1999-02-15 16:34:00 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-02-15 16:34:00 (GMT) |
commit | aa1afa8d308b4c17b2e79b3df6b40b988e42f8be (patch) | |
tree | 3c162a6d14d47b5ae87f10eaf3aec8f94c123863 /Doc/lib | |
parent | 5d59d3df7f308df4a728755a6e7500e13b0a80b1 (diff) | |
download | cpython-aa1afa8d308b4c17b2e79b3df6b40b988e42f8be.zip cpython-aa1afa8d308b4c17b2e79b3df6b40b988e42f8be.tar.gz cpython-aa1afa8d308b4c17b2e79b3df6b40b988e42f8be.tar.bz2 |
Added availability notes for samefile(), sameopenfile(), samestat()
since these are not available on Windows.
Diffstat (limited to 'Doc/lib')
-rw-r--r-- | Doc/lib/libposixpath.tex | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/lib/libposixpath.tex b/Doc/lib/libposixpath.tex index b4e1c5a..e467e46 100644 --- a/Doc/lib/libposixpath.tex +++ b/Doc/lib/libposixpath.tex @@ -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} |