diff options
author | Fred Drake <fdrake@acm.org> | 1998-03-17 06:33:25 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-03-17 06:33:25 (GMT) |
commit | cce1090d49ba91cdc06c60d8a2af04d057abe7dc (patch) | |
tree | 8b866b9986508cfb7cec89ab4fb5e1c269756b8f /Doc/libppath.tex | |
parent | c9a4438c16c66af5b196adf172fd3416ac4ec9d3 (diff) | |
download | cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.zip cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.tar.gz cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.tar.bz2 |
Change "\," to just "," in function signatures. This is easier to maintain,
works better with LaTeX2HTML, and allows some simplification of the python.sty
macros.
Diffstat (limited to 'Doc/libppath.tex')
-rw-r--r-- | Doc/libppath.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/libppath.tex b/Doc/libppath.tex index f1d17d6..6639c7c 100644 --- a/Doc/libppath.tex +++ b/Doc/libppath.tex @@ -80,7 +80,7 @@ different device than \var{p}, or whether \file{\var{p}/..} and detect mount points for all \UNIX{} and \POSIX{} variants. \end{funcdesc} -\begin{funcdesc}{join}{p\optional{\, q\optional{\, ...}}} +\begin{funcdesc}{join}{p\optional{, q\optional{, ...}}} Joins one or more path components intelligently. If any component is an absolute path, all previous components are thrown away, and joining continues. The return value is the concatenation of \var{p}, and @@ -103,7 +103,7 @@ case (use \function{normcase()} for that). On Windows, it does converts forward slashes to backward slashes. \end{funcdesc} -\begin{funcdesc}{samefile}{p\, q} +\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 \function{os.stat()} call on either pathname @@ -130,7 +130,7 @@ and \var{ext} is empty or begins with a period and contains at most one period. \end{funcdesc} -\begin{funcdesc}{walk}{p\, visit\, arg} +\begin{funcdesc}{walk}{p, visit, arg} Calls the function \var{visit} with arguments \code{(\var{arg}, \var{dirname}, \var{names})} for each directory in the directory tree rooted at \var{p} (including \var{p} itself, if it is a |