summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1999-04-22 14:55:43 (GMT)
committerFred Drake <fdrake@acm.org>1999-04-22 14:55:43 (GMT)
commitca69a03dd6a0d7fe262c861b493f789e0273b405 (patch)
treeac46218b9057d44f38667a75cfd7cd4276d5acc6
parent7bf96ca32dabf5444f73d656a7ece380d8e14f15 (diff)
downloadcpython-ca69a03dd6a0d7fe262c861b493f789e0273b405.zip
cpython-ca69a03dd6a0d7fe262c861b493f789e0273b405.tar.gz
cpython-ca69a03dd6a0d7fe262c861b493f789e0273b405.tar.bz2
Don't refer to the system documentation as "man pages"; too
Unix-centric. Note that this can be used with the output of os.fstat() as well as os.stat() and os.lstat().
-rw-r--r--Doc/lib/libstat.tex11
1 files changed, 6 insertions, 5 deletions
diff --git a/Doc/lib/libstat.tex b/Doc/lib/libstat.tex
index d6e26b7..4155206 100644
--- a/Doc/lib/libstat.tex
+++ b/Doc/lib/libstat.tex
@@ -9,10 +9,10 @@
The \module{stat} module defines constants and functions for
-interpreting the results of \function{os.stat()} and
-\function{os.lstat()} (if they exist). For complete details about the
-\cfunction{stat()} and \cfunction{lstat()} system calls, consult your
-local man pages.
+interpreting the results of \function{os.stat()},
+\function{os.fstat()} and \function{os.lstat()} (if they exist). For
+complete details about the \cfunction{stat()}, \cfunction{fstat()} and
+\cfunction{lstat()} calls, consult the documentation for your system.
The \module{stat} module defines the following functions:
@@ -46,7 +46,8 @@ Return non-zero if the mode was gotten from a socket.
\end{funcdesc}
All the data items below are simply symbolic indexes into the 10-tuple
-returned by \function{os.stat()} or \function{os.lstat()}.
+returned by \function{os.stat()}, \function{os.fstat()} or
+\function{os.lstat()}.
\begin{datadesc}{ST_MODE}
Inode protection mode.