diff options
author | Fred Drake <fdrake@acm.org> | 1997-12-17 14:11:18 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1997-12-17 14:11:18 (GMT) |
commit | a47bce54a6c89c3892a7f065e122390686fc9c31 (patch) | |
tree | 396bf19eb9179a8ad341c5cd69b2ed30ffadd931 /Doc/lib/libstat.tex | |
parent | 9c483191d6f8ebc12534bb5a5ed8bdd57921f28d (diff) | |
download | cpython-a47bce54a6c89c3892a7f065e122390686fc9c31.zip cpython-a47bce54a6c89c3892a7f065e122390686fc9c31.tar.gz cpython-a47bce54a6c89c3892a7f065e122390686fc9c31.tar.bz2 |
Make the word "Module" in the section header start with an upper-case "M".
Added a \label{} for the module.
Fixed one minor grammatical nit: use plural pronoun to refer to a pair of
referents.
Include "()" when naming functions in the text.
Diffstat (limited to 'Doc/lib/libstat.tex')
-rw-r--r-- | Doc/lib/libstat.tex | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Doc/lib/libstat.tex b/Doc/lib/libstat.tex index bb3b66a..a1d8a78 100644 --- a/Doc/lib/libstat.tex +++ b/Doc/lib/libstat.tex @@ -1,12 +1,13 @@ % By Skip Montanaro -\section{Standard module \sectcode{stat}} +\section{Standard Module \sectcode{stat}} \stmodindex{stat} +\label{module-stat} The \code{stat} module defines constants and functions for interpreting the -results of \code{os.stat} and \code{os.lstat} (if it exists). For complete -details about the \code{stat} and \code{lstat} system calls, consult your -local man pages. +results of \code{os.stat()} and \code{os.lstat()} (if they exist). +For complete details about the \code{stat()} and \code{lstat()} system +calls, consult your local man pages. The \code{stat} module defines the following functions: @@ -37,7 +38,7 @@ 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 \code{os.stat} or \code{os.lstat}. +returned by \code{os.stat()} or \code{os.lstat()}. \begin{datadesc}{ST_MODE} Inode protection mode. |