diff options
author | Fred Drake <fdrake@acm.org> | 1997-12-15 21:56:05 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1997-12-15 21:56:05 (GMT) |
commit | 54820dc8e4db15bd30c4b2f650d79cd0fb96f76b (patch) | |
tree | e21ef93287768da2f4516ced6ab8e4f82ac8168c /Doc/libppath.tex | |
parent | 6206394a4b42a22845713f9971923613eb6c8203 (diff) | |
download | cpython-54820dc8e4db15bd30c4b2f650d79cd0fb96f76b.zip cpython-54820dc8e4db15bd30c4b2f650d79cd0fb96f76b.tar.gz cpython-54820dc8e4db15bd30c4b2f650d79cd0fb96f76b.tar.bz2 |
Fixed index references to modules.
Diffstat (limited to 'Doc/libppath.tex')
-rw-r--r-- | Doc/libppath.tex | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Doc/libppath.tex b/Doc/libppath.tex index 6bd8a20..01f05a1 100644 --- a/Doc/libppath.tex +++ b/Doc/libppath.tex @@ -6,7 +6,7 @@ This module implements some useful functions on POSIX pathnames. \strong{Do not import this module directly.} Instead, import the module \code{os} and use \code{os.path}. -\stmodindex{os} +\refstmodindex{os} \renewcommand{\indexsubitem}{(in module posixpath)} @@ -38,6 +38,7 @@ initial \samp{\~{}} is replaced by the environment variable \code{\${}HOME}; an initial \samp{\~\var{user}} is looked up in the password directory through the built-in module \code{pwd}. If the expansion fails, or if the path does not begin with a tilde, the path is returned unchanged. +\refbimodindex{pwd} \end{funcdesc} \begin{funcdesc}{expandvars}{p} @@ -54,14 +55,14 @@ Return true if \var{p} is an absolute pathname (begins with a slash). \begin{funcdesc}{isfile}{p} Return true if \var{p} is an existing regular file. This follows -symbolic links, so both \code{islink()} and \code{isfile()} can be true for the same -path. +symbolic links, so both \code{islink()} and \code{isfile()} can be +true for the same path. \end{funcdesc} \begin{funcdesc}{isdir}{p} Return true if \var{p} is an existing directory. This follows -symbolic links, so both \code{islink()} and \code{isdir()} can be true for the same -path. +symbolic links, so both \code{islink()} and \code{isdir()} can be true +for the same path. \end{funcdesc} \begin{funcdesc}{islink}{p} @@ -97,7 +98,7 @@ lower case. \begin{funcdesc}{samefile}{p\, q} 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 stat call on either pathname fails. +Raise an exception if a \code{stat()} call on either pathname fails. \end{funcdesc} \begin{funcdesc}{split}{p} |